home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / assembly / lsdjoke.lha / messintro2.s < prev    next >
Encoding:
Text File  |  1980-05-17  |  133.2 KB  |  4,650 lines

  1.  
  2.      Section joke_intro,code_C
  3.  
  4.     opt    c-,o-
  5.  
  6.     move.l  4.w,a6        ; exec lib
  7.     jsr    -132(a6)    ; forbid
  8.  
  9.     lea    dlib,a1
  10.     moveq    #0,d0
  11.     move.l    4.w,a6
  12.     jsr    -$228(a6)
  13.     tst    d0
  14.     beq    error
  15.     move.l    D0,dos        ; store address of dos lib
  16.  
  17.     lea    glib,a1
  18.     moveq    #0,d0
  19.     move.l    4.w,a6
  20.     jsr    -$228(a6)    ; open lib
  21.     tst    d0
  22.     beq    error
  23.     move.l    D0,graphics    ; store address of graphics lib
  24.     
  25.     move.l    #Screen+32,d0    ; store address of bitplane0
  26.     move.w    d0,bitplane0_lo    ; into the copper list
  27.     swap    d0
  28.     move.w    d0,bitplane0_hi
  29.     swap    d0
  30.     add.l    #bplen,d0
  31.  
  32.     move.w    d0,bitplane1_lo    ; into the copper list
  33.     swap    d0
  34.     move.w    d0,bitplane1_hi
  35.     swap    d0
  36.     add.l    #bplen,d0
  37.     
  38.     move.w    d0,bitplane2_lo    ; into the copper list
  39.     swap    d0
  40.     move.w    d0,bitplane2_hi
  41.     swap    d0
  42.     add.l    #bplen,d0
  43.     
  44.     move.w    d0,bitplane3_lo    ; into the copper list
  45.     swap    d0
  46.     move.w    d0,bitplane3_hi
  47.     swap    d0
  48.  
  49.     move.l  4.w,a6
  50.     move.l    #scrsize,d0
  51.     move.l    #$10002,d1
  52.     jsr    -198(a6)    ; alloc mem    
  53.     move.l    d0,screen2
  54.     jsr    setup_screen
  55.  
  56.     move.l    #sprite1,d0
  57.     move.w    d0,spr_1l
  58.     swap    d0
  59.     move.w    d0,spr_1h
  60.  
  61.     move.l    #sprite2,d0
  62.     move.w    d0,spr_2l
  63.     swap    d0
  64.     move.w    d0,spr_2h
  65.  
  66.     move.l    #sprite3,d0
  67.     move.w    d0,spr_3l
  68.     swap    d0
  69.     move.w    d0,spr_3h
  70.  
  71.     move.l    #sprite4,d0
  72.     move.w    d0,spr_4l
  73.     swap    d0
  74.     move.w    d0,spr_4h
  75.  
  76.  
  77.     move.l    scr2,d0    
  78.     add.l    #2,d0
  79.     move.w    d0,bitplane4_lo
  80.     swap     d0
  81.     move.w    d0,bitplane4_hi
  82.     swap     d0
  83.     add.l    #shadowy*wide,d0
  84.     move.w    d0,bitplane5_lo
  85.     swap     d0
  86.     move.w    d0,bitplane5_hi
  87.  
  88.     bsr    mt_init
  89.  
  90.     move.l    graphics,a6
  91.     add.l    #$32,a6
  92.     move.w    #$80,$dff096        ; dma control write
  93.     move.l    (a6),old_copper        ; store the address of the
  94.     move.l    #my_copper,(a6)        ; old copperlist
  95.     move.w    #$8080,$dff096        ; dma control write
  96.     move.w    #$8010,$dff09a        ; interupt enable bits
  97.     move.l    $6c.w,old_interupt    ; store old level 3 int
  98.     move.l    #new_interupt,$6c.w    ; store my routine
  99.                     ; into level 3 int
  100.     
  101.     move.l    #-1,waiting
  102.  
  103.     move.b    tline,d0
  104.     add.b    #72,d0
  105.     move.b    d0,tline
  106.     add.b    #2,d0
  107.     move.b    d0,tline+8
  108.  
  109.     move.b    bline,d0
  110.     sub.b    #72,d0
  111.     move.b    d0,bline
  112.     add.b    #2,d0
  113.     move.b    d0,bline+8
  114.     
  115.     move.w    #71,d7
  116. cinema:
  117.     bsr    bye
  118.     beq    exit
  119.  
  120.     move.b    tline,d0
  121.     sub.b    #1,d0
  122.     move.b    d0,tline
  123.     add.b    #2,d0
  124.     move.b    d0,tline+8
  125.     
  126.     move.b    bline,d0
  127.     add.b    #1,d0
  128.     move.b    d0,bline
  129.     add.b    #2,d0
  130.     move.b    d0,bline+8
  131.     
  132.     bsr    pause
  133.  
  134.     dbf    d7,cinema
  135.  
  136. rise:    
  137.     bsr    bye
  138.     beq.s    exit
  139.  
  140.     bsr    pause
  141.  
  142.     sub.w    #$100,lline
  143.     cmp.w    #$100,lline
  144.     bgt.s    rise    
  145.  
  146.     move.l    #0,waiting    
  147.  
  148. mouse:
  149.     bsr    bye
  150.     beq.s    exit
  151.     cmp.l    #-1,waiting
  152.     beq    make_page
  153.     bra.s    mouse
  154.     
  155. exit:    bsr    mt_end
  156.  
  157.     move.l    old_interupt,$6c.w    ; resore old level 3 int
  158.     move.l    #$10,$dff09a         ; Disable Level 3 Interupt
  159.     move.l    graphics,a6
  160.     add.l    #$32,a6
  161.     move.w    #$0080,$dff096
  162.     move.l    old_copper,(a6)        ; restore old copper list
  163.     move.w    #$8080,$dff096
  164.     move.l    graphics,a1
  165.     move.l    4.w,a6
  166.     jsr    -$19e(a6)
  167.     
  168.     move.l    4.w,a6
  169.     move.l  4.w,a6
  170.     move.l    screen2,a1
  171.     move.l    #scrsize,d0
  172.     jsr    -210(a6)
  173.  
  174. error:    moveq    #0,d0            ; return code=0 (ie mellow)
  175.     rts
  176.  
  177. pause:    move.l    #0,delay3    
  178. pause2:    move.l    delay3,d0
  179.     cmp.l    #1,d0
  180.     blt.s    pause2
  181.     rts
  182.  
  183. make_page:
  184.     btst    #2,$dff016        ; patch for wait for rmb 
  185.     beq.s    do_next_page        ; to go onto the next    
  186.                     ; page!!!
  187.  
  188.     btst    #6,$bfe001        ; patch for wait for lmb
  189.     beq.s    do_last_page        ; to go onto the last
  190.     move.l    #200,delay        ; page!!!
  191.  
  192.     cmp.l    #10,delay
  193.     bgt    mouse
  194.     
  195. do_next_page:
  196.     add.l    #1,pagenum
  197.     bra    do_make_page
  198.     
  199. do_last_page
  200.     cmp.l    #0,pagenum
  201.     beq    do_make_page
  202.     sub.l    #1,pagenum
  203.     
  204. do_make_page:
  205.     move.l    #0,delay
  206.     
  207.     bsr    next_page
  208.  
  209.     move.l    scr2,a2
  210.     Move.l    a2,$dff054        ; dest mem d
  211.     Move.w    #0,$dff044        ; blit 1st word mask source a
  212.     move.w    #0,$dff046        ; blit last word mask source a
  213.     move.w    #0,$dff064        ; blit modulo for source a
  214.     move.w    #(%0001*256)+$f0,$dff040; blit cont reg    0
  215.     move.w    #0,$dff042        ; blit cont reg 1
  216.     Move.w    #0,$dff066        ; modulo for dest
  217.     Move.w    #(200*64)+wide/2,$dff058    ; blit height,width
  218.     jsr    do_blit
  219.  
  220.     move.l    #0,waiting
  221.     bra    mouse
  222.  
  223. bye:    btst    #6,$bfe001
  224.     bne.s    no_bye
  225.     
  226.     btst    #2,$dff016
  227.     bne.s    no_bye
  228.     
  229.     move.l    #0,d0
  230.     rts
  231. no_bye:    move.l    #-1,d0
  232.     rts
  233.  
  234. new_interupt:
  235.     movem.l    d0-d7/a0-a6,-(sp) 
  236.  
  237.  
  238. wait_irq:
  239.     and.w    #$10,$dff01e        ; check for vblank
  240.     beq     no_music
  241.     move.w    #$10,$dff09c
  242.  
  243.     add.l    #1,delay3
  244.  
  245.     bsr    star_field
  246.  
  247.     sub.l    #1,delay
  248.     bpl.s    not_now
  249.     cmp.l    #-1,waiting
  250.     beq.s    not_now
  251.     
  252.     move.l    #0,delay
  253.     bsr    do_line
  254.     bsr    do_line
  255. not_now:
  256.     cmp.l    #$19cce7a2,mt_data
  257.     beq.s    not_playing
  258.     bsr    mt_music
  259.     bsr    mt_equal
  260. not_playing:
  261.  
  262.     move.l    scr2,d0    
  263.     add.l    #2,d0
  264.     move.w    d0,bitplane4_lo
  265.     swap     d0
  266.     move.w    d0,bitplane4_hi
  267.     swap     d0
  268.     add.l    #shadowy*wide,d0
  269.     move.w    d0,bitplane5_lo
  270.     swap     d0
  271.     move.w    d0,bitplane5_hi
  272.  
  273. no_music:
  274.     movem.l    (sp)+,d0-d7/a0-a6    
  275.     dc.w    $4ef9            ; jmp
  276. old_interupt:    dc.l    0        ; the old int lev 3
  277.  
  278. do_line:
  279.  
  280.     move.l    line,d0
  281.     mulu    #wide*tall,d0
  282.     add.l    #wide*tall,d0
  283.     
  284.     move.l    scr2,a2
  285.     add.l    d0,a2
  286.     move.l    scr2,a3
  287.     add.l    d0,a3
  288.     
  289.     move.w    #4,d5
  290.     mulu    #8192,d5
  291.     or.w    #(%1001*256)+$f0,d5
  292.  
  293.     Move.l    a3,$dff054        ; dest mem d
  294.     Move.l    a2,$dff050        ; source mem a
  295.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  296.     move.w    #$ffff,$dff046        ; blit last word mask source a
  297.     move.w    #wide+2,$dff064        ; blit modulo for source a
  298.     move.w    d5,$dff040
  299.     move.w    #0,$dff042        ; blit cont reg 1
  300.     Move.w    #wide+2,$dff066        ; modulo for dest
  301.     Move.w    #(5*64)+(wide/2)-1,$dff058    ; blit height,width
  302.  
  303.     jsr    do_blit
  304.     
  305.     move.l    scr2,a2
  306.     add.l    d0,a2
  307.     move.l    scr2,a3
  308.     add.l    d0,a3
  309.     sub.l    #2,a3
  310.     
  311.     move.w    #4,d5
  312.     mulu    #8192,d5
  313.     or.w    #(%1001*256)+$f0,d5
  314.  
  315.     add.l    #wide+2,a2
  316.     add.l    #wide+2,a3
  317.  
  318.     Move.l    a3,$dff054        ; dest mem d
  319.     Move.l    a2,$dff050        ; source mem a
  320.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  321.     move.w    #$ffff,$dff046        ; blit last word mask source a
  322.     move.w    #wide+2,$dff064        ; blit modulo for source a
  323.     move.w    d5,$dff040
  324.     move.w    #0,$dff042        ; blit cont reg 1
  325.     Move.w    #wide+2,$dff066        ; modulo for dest
  326.     Move.w    #(5*64)+(wide/2)-1,$dff058    ; blit height,width
  327.  
  328.     jsr    do_blit
  329.  
  330.     add.w    #4,scroll
  331.     cmp.w    #8,scroll
  332.     beq.s    scroll_ok
  333.     
  334.     rts
  335.  
  336. scroll_ok:
  337.     move.w    #0,scroll
  338.  
  339.     move.l    scr1,a2
  340.     add.l    d0,a2        ; how far down
  341.     add.l    x1,a2        ; read right to left
  342.     sub.l    #2,x1        ; next bit
  343.     cmp.l    #-2,x1        ; begining of line
  344.     bgt    scroll_not_fin    ;
  345.     
  346.     ; correct the fact the both lines dont meet in the middle
  347.     
  348.     move.l    scr2,a3
  349.     add.l    d0,a3
  350.     move.l    scr1,a2
  351.     add.l    d0,a2
  352.  
  353.     add.l    #wide,a3
  354.  
  355.     move.l    a3,$dff054        ; dest mem d
  356.     move.l    a2,$dff050        ; source mem a
  357.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  358.     move.w    #$ffff,$dff046        ; blit last word mask source a
  359.     move.w    #0,$dff064        ; blit modulo for source a
  360.     move.w    #(%1001*256)+$f0,$dff040; blit cont reg    0
  361.     move.w    #0,$dff042        ; blit cont reg 1
  362.     Move.w    #0,$dff066        ; modulo for dest
  363.     Move.w    #(10*64)+wide/2,$dff058    ; blit height,width
  364.  
  365.     bsr    do_blit    
  366.     
  367.     add.l    #1,line
  368.     move.l    line,d7
  369.     cmp.l    height,d7
  370.     blt.s    line_ok
  371.     
  372.     move.l    #-1,waiting
  373.     move.l    #200,delay
  374.         
  375.     move.l    #-1,line        
  376.     rts
  377.  
  378. line_ok:
  379.     
  380.     move.l    #wide-4,x1
  381.     move.l    #0,x2
  382.  
  383.     rts
  384.     
  385. scroll_not_fin:
  386.     
  387.     move.l    scr2,a3
  388.     add.l    d0,a3
  389.     sub.l    #wide,a2
  390.  
  391.     
  392.     Move.l    a3,$dff054        ; dest mem d
  393.     Move.l    a2,$dff050        ; source mem a
  394.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  395.     move.w    #$ffff,$dff046        ; blit last word mask source a
  396.     move.w    #wide*2-2,$dff064    ; blit modulo for source a
  397.     move.w    #(%1001*256)+$f0,$dff040; blit cont reg    0
  398.     move.w    #0,$dff042        ; blit cont reg 1
  399.     Move.w    #wide*2-2,$dff066    ; modulo for dest
  400.     Move.w    #(5*64)+1,$dff058    ; blit height,width
  401.     jsr    do_blit
  402.  
  403.     move.l    scr1,a2
  404.     add.l    d0,a2        ; how far down
  405.     add.l    x2,a2        ; read right to left
  406.     
  407.     add.l    #2,x2        ; next bit
  408.     move.l    scr2,a3
  409.     add.l    d0,a3
  410.     add.l    #wide*2-2,a3
  411.     
  412.     Move.l    a3,$dff054        ; dest mem d
  413.     Move.l    a2,$dff050        ; source mem a
  414.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  415.     move.w    #$ffff,$dff046        ; blit last word mask source a
  416.     move.w    #wide*2-2,$dff064    ; blit modulo for source a
  417.     move.w    #(%1001*256)+$f0,$dff040; blit cont reg    0
  418.     move.w    #0,$dff042        ; blit cont reg 1
  419.     Move.w    #wide*2-2,$dff066    ; modulo for dest
  420.     Move.w    #(5*64)+1,$dff058    ; blit height,width
  421.     jsr    do_blit
  422.  
  423.     rts
  424.  
  425.  
  426. setup_screen:
  427.  
  428.     lea    cmap,a0
  429.     move.w    (a0)+,d0
  430.     
  431.     lea    screen,a1
  432.     move.w    #15,d0
  433. cmaploop:
  434.     move.w    (a1)+,(a0)+
  435.     addq.l    #2,a0
  436.     subq.w    #1,d0
  437.     bpl.s    cmaploop    
  438.  
  439.     move.l    screen2,a2
  440.     move.l    a2,newscr
  441.     move.l    a2,scr1
  442.     add.l    #20*tall*wide,a2
  443.     move.l    a2,scr2
  444.  
  445.     move.l    scr1,$dff054                ; dest mem d
  446.     move.w    #0,$dff064                ; source a modulo 
  447.     Move.w    #0,$dff044                ; blit 1st word mask source a
  448.     move.w    #0,$dff046
  449.     move.w    #(%0001)*256,$dff040            ; blit cont reg 0
  450.     move.w    #%0000000000000100,$dff042        ; blit cont reg 1
  451.     Move.w    #0,$dff066                ; modulo for dest
  452.     Move.w    #(255*64)+wide/2,$dff058        ; blit height,width
  453.     jsr    do_blit
  454.  
  455.     move.l    scr1,a2
  456.     add.l    #wide,a2
  457.     jsr    blit_message
  458.  
  459.     moveq.l    #10,d0
  460.  
  461.     lea    cmap,a0
  462.     move.w    (a0)+,d0
  463.  
  464. next_page:
  465.     move.l    scr1,a2            ; clear the screen
  466.     
  467.     move.l    #(20*tall*40)/4,d0
  468. cls:    move.l    #0,(a2)+
  469.     sub.l    #1,d0
  470.     bpl.s    cls
  471.     
  472.  
  473. try_page:
  474.     move.l    pagenum,d0
  475.     lea    pages,a1
  476.     mulu    #4,d0
  477.     add.l    d0,a1
  478.     move.l    (a1),a1
  479.     move.l    a1,page
  480.     cmp.l    #0,a1
  481.     bne.s    page_good
  482.  
  483.     move.l    #0,pagenum
  484.     bra.s    try_page
  485.  
  486. page_good:
  487.  
  488.     move.l    page,a1
  489.     move.l    scr1,a2
  490.     add.l    #wide,a2
  491.     move.l    #0,height
  492.  
  493. plot_again:
  494.     add.l    #1,height
  495.     
  496.     add.l    #wide*tall,a2
  497.     bsr    blit_message
  498.  
  499.     move.b    (a1),d0
  500.     bne.s    plot_again
  501.     
  502.     rts
  503.     
  504. blit_message:
  505.  
  506.     movem.l    d0-d7/a2-a6,-(sp)
  507.  
  508.     move.l    #0,midadd
  509.  
  510.     move.l    a1,a6
  511.     clr.b    d0
  512.     moveq.l    #-1,d1
  513.     
  514. blit_message_loop1:
  515.  
  516.     addq.l    #1,d1
  517.     move.b    (a6),d0
  518.     addq    #1,a6
  519.     cmp.b    #0,d0
  520.     bne.s    blit_message_loop1
  521.  
  522.     move.w    d1,d5
  523.     and.w    #1,d5
  524.     asl.w    #1,d5
  525.     move.w    d5,mid
  526.     
  527.     move.l    a2,midadd
  528.     move.w    d1,d5
  529.  
  530.     addq.l    #1,d1
  531.     lsr.l    #1,d1
  532.  
  533.     moveq.l    #wide/2,d6
  534.  
  535.     sub.l    d1,d6
  536.     add.l    d6,a2
  537.     move.l    a2,d2
  538.     and.l    #$fffffffe,d2
  539.     move.l    a2,d3
  540.     and.l    #1,d3
  541.     move.l    d2,a2
  542.     
  543.     move.w    #12,d6
  544.     cmp.l    #1,d3
  545.     beq.s    cont_blit_message
  546.     
  547.     add.w    #12,mid
  548.     subq.l    #2,midadd
  549.     
  550. cont_blit_message:
  551.     
  552.     move.w    d6,d7
  553.     mulu    #8192,d7
  554.     
  555.     subq.w    #4,d6
  556.     cmp.w    #4,d6
  557.     bne.s    other_half
  558.     
  559.     move.w    #12,d6
  560.     add.l    #wide*2,a2
  561.     
  562. other_half:
  563.  
  564.     sub.l    #wide,a2
  565.     clr.w    d0
  566.     lea    font,a0
  567.     move.b    (a1),d0
  568.     addq.l    #1,a1
  569.     cmp.b    #0,d0
  570.     bne.s    mess_is_ok
  571.  
  572.     movem.l    (sp)+,d0-d7/a2-a6    
  573.     
  574.     move.w    mid,d5
  575.     mulu    #8192,d5
  576.     or.w    #(%1001*256)+$f0,d5
  577.     
  578.     move.l    midadd,a3
  579.  
  580.     
  581.     Move.l    a3,$dff054        ; dest mem d
  582.     Move.l    a2,$dff050        ; source mem a
  583.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  584.     move.w    #$ffff,$dff046        ; blit last word mask source a
  585.     move.w    #0,$dff064        ; blit modulo for source a
  586.     move.w    d5,$dff040
  587.     move.w    #0,$dff042        ; blit cont reg 1
  588.     Move.w    #0,$dff066        ; modulo for dest
  589.     Move.w    #(8*64)+wide/2,$dff058    ; blit height,width
  590.     jsr    do_blit
  591.  
  592.  
  593. dont_centre:
  594.     rts
  595.     
  596.     
  597. mess_is_ok:
  598.  
  599.     cmp    #32,d0
  600.     beq    space
  601.  
  602.     sub    #32,d0
  603.     mulu    #16,d0
  604.     add    d0,a0
  605.  
  606.     Move.l    a2,$dff054        ; dest mem d
  607.     Move.l    a0,$dff050        ; source mem a
  608.     move.l    a2,$dff048        ; source mem c
  609.     Move.w    #$ffff,$dff044        ; blit 1st word mask source a
  610.     move.w    #$ffff,$dff046        ; blit last word mask source a
  611.     move.w    #0,$dff064        ; blit modulo for source a
  612.     move.w    #wide-2,$dff060        ; blit modulo for source c    
  613.     or.w    #(%1011*256)+$fa,d7
  614.     move.w    d7,$dff040        ; blit cont reg 0
  615.     move.w    #0,$dff042        ; blit cont reg 1
  616.     Move.w    #wide-2,$dff066        ; modulo for dest
  617.     Move.w    #(8*64)+1,d0        ; blit height,width
  618.     cmp.l    #12,d6
  619.     beq.s    not_12
  620.     Move.w    #(9*64)+1,d0
  621. not_12:    
  622.     move.w    d0,$dff058    ; blit height,width
  623.     jsr    do_blit
  624.     
  625. space:
  626.     
  627.     addq.l    #1,a2
  628.     bra    cont_blit_message
  629.  
  630. do_blit:
  631.     btst.b    #6,$dff002
  632.     bne.s    do_blit
  633.     rts
  634.     
  635.     
  636. mt_equal:
  637.     move.w    equ1+06,d0
  638.     sub.w    #$100,d0
  639.     bpl.s    mt_equ1a_ok
  640.     move.l    #$000,d0
  641. mt_equ1a_ok:
  642.     move.w    d0,equ1+6
  643.  
  644.     move.w    equ1+14,d0
  645.     sub.w    #$111,d0
  646.     bpl.s    mt_equ1b_ok
  647.     move.l    #$000,d0
  648. mt_equ1b_ok:
  649.     move.w    d0,equ1+14
  650.     
  651.     move.w    equ1+22,d0
  652.     sub.w    #$100,d0
  653.     bpl.s    mt_equ1c_ok
  654.     move.l    #$000,d0
  655. mt_equ1c_ok:
  656.     move.w    d0,equ1+22
  657.  
  658.     move.w    equ2+06,d0
  659.     sub.w    #$010,d0
  660.     bpl.s    mt_equ2a_ok
  661.     move.l    #$000,d0
  662. mt_equ2a_ok:
  663.     move.w    d0,equ2+6
  664.  
  665.     move.w    equ2+14,d0
  666.     sub.w    #$010,d0
  667.     bpl.s    mt_equ2b_ok
  668.     move.l    #$000,d0
  669. mt_equ2b_ok:
  670.     move.w    d0,equ2+14
  671.     
  672.     move.w    equ2+22,d0
  673.     sub.w    #$010,d0
  674.     bpl.s    mt_equ2c_ok
  675.     move.l    #$000,d0
  676. mt_equ2c_ok:
  677.     move.w    d0,equ2+22
  678.  
  679.     move.w    equ3+06,d0
  680.     sub.w    #$011,d0
  681.     bpl.s    mt_equ3a_ok
  682.     move.l    #$000,d0
  683. mt_equ3a_ok:
  684.     move.w    d0,equ3+6
  685.  
  686.     move.w    equ3+14,d0
  687.     sub.w    #$011,d0
  688.     bpl.s    mt_equ3b_ok
  689.     move.l    #$000,d0
  690. mt_equ3b_ok:
  691.     move.w    d0,equ3+14
  692.     
  693.     move.w    equ3+22,d0
  694.     sub.w    #$011,d0
  695.     bpl.s    mt_equ3c_ok
  696.     move.l    #$000,d0
  697. mt_equ3c_ok:
  698.     move.w    d0,equ3+22
  699.  
  700.     move.w    equ4+06,d0
  701.     sub.w    #$110,d0
  702.     bpl.s    mt_equ4a_ok
  703.     move.l    #$000,d0
  704. mt_equ4a_ok:
  705.     move.w    d0,equ4+6
  706.  
  707.     move.w    equ4+14,d0
  708.     sub.w    #$110,d0
  709.     bpl.s    mt_equ4b_ok
  710.     move.l    #$000,d0
  711. mt_equ4b_ok:
  712.     move.w    d0,equ4+14
  713.     
  714.     move.w    equ4+22,d0
  715.     sub.w    #$110,d0
  716.     bpl.s    mt_equ4c_ok
  717.     move.l    #$000,d0
  718. mt_equ4c_ok:
  719.     move.w    d0,equ4+22
  720.     rts
  721.     
  722. Mt_Init:Lea    Mt_Data,a0
  723.     Move.l    a0,a1
  724.     Add.l    #$3b8,a1
  725.     Moveq    #$7f,d0
  726.     Moveq    #0,d1
  727. Mt_Loop    Move.l    d1,d2
  728.     Subq.w    #1,d0
  729. Mt_Lop2    Move.b    (a1)+,d1
  730.     Cmp.b    d2,d1
  731.     Bgt.s    Mt_Loop
  732.     Dbf    d0,Mt_Lop2
  733.     Addq.b    #1,d2
  734.  
  735.     Lea    Mt_SampleStarts,a1
  736.     Asl.l    #8,d2
  737.     Asl.l    #2,d2
  738.     Add.l    #$43c,d2
  739.     Add.l    a0,d2
  740.     Move.l    d2,a2
  741.     Moveq    #$1e,d0
  742. Mt_Lop3    Move.l    #0,(a2)
  743.     Move.l    a2,(a1)+
  744.     Moveq    #0,d1
  745.     Move.w    42(a0),d1
  746.     Asl.l    #1,d1
  747.     Add.l    d1,a2
  748.     Add.l    #$1e,a0
  749.     Dbf    d0,Mt_Lop3
  750.  
  751.     Or.b    #$2,$bfe001
  752.     Move.b    #$6,Mt_Speed
  753.     Move.b    #$3f,Mt_Voice1+$12
  754.     Move.b    #$3f,Mt_Voice2+$12
  755.     Move.b    #$3f,Mt_Voice3+$12
  756.     Move.b    #$3f,Mt_Voice4+$12
  757.  
  758.     Move.w    #0,$dff0a8
  759.     Move.w    #0,$dff0b8
  760.     Move.w    #0,$dff0c8
  761.     Move.w    #0,$dff0d8
  762.     Clr.b    Mt_SongPos
  763.     Clr.b    Mt_Counter
  764.     Clr.w    Mt_PattPos
  765.     Rts
  766.  
  767. Mt_End    Move.w    #0,$dff0a8
  768.     Move.w    #0,$dff0b8
  769.     Move.w    #0,$dff0c8
  770.     Move.w    #0,$dff0d8
  771.     Move.w    #$f,$dff096
  772.     Moveq.l    #0,d0
  773.     Rts
  774.  
  775. Mt_Music
  776.     Movem.l    d0-d4/a0-a3/a5-a6,-(a7)
  777.     Lea    Mt_Data,a0
  778.     Addq.b    #$1,Mt_Counter
  779.     Move.b    Mt_Counter,d0
  780.     cmp.b    Mt_speed,d0
  781.     Blt.s    Mt_NoNew
  782.     Clr.b    Mt_Counter
  783.     Bra    Mt_GetNew
  784. Mt_NoNew
  785.     Lea    Mt_Voice1,a6
  786.     Lea    $dff0a0,a5
  787.     Bsr    Mt_CheckCom
  788.     Lea    Mt_Voice2,a6
  789.     Lea    $dff0b0,a5
  790.     Bsr    Mt_CheckCom
  791.     Lea    Mt_Voice3,a6
  792.     Lea    $dff0c0,a5
  793.     Bsr    Mt_CheckCom
  794.     Lea    Mt_Voice4,a6
  795.     Lea    $dff0d0,a5
  796.     Bsr    Mt_CheckCom
  797.     Bra    Mt_Endr
  798.  
  799. Mt_Arpeggio
  800.     Moveq.l    #0,d0
  801.     Move.b    Mt_Counter,d0
  802.     Divs    #$3,d0
  803.     Swap    d0
  804.     Cmp.w    #$0,d0
  805.     Beq.s    Mt_Arp2
  806.     Cmp.w    #$2,d0
  807.     Beq.s    Mt_Arp1
  808.  
  809.     Moveq.l    #0,d0
  810.     Move.b    $3(a6),d0
  811.     Lsr.b    #4,d0
  812.     Bra.s    Mt_Arp3
  813. Mt_Arp1    Moveq.l    #0,d0
  814.     Move.b    $3(a6),d0
  815.     And.b    #$f,d0
  816.     Bra.s    Mt_Arp3
  817. Mt_Arp2    Move.w    $10(a6),d2
  818.     Bra.s    Mt_Arp4
  819. Mt_Arp3    Asl.w    #1,d0
  820.     Moveq.l    #0,d1
  821.     Move.w    $10(a6),d1
  822.     Lea    Mt_Periods,a0
  823.     Moveq    #$24,d7
  824. Mt_ArpLoop
  825.     Move.w    (a0,d0.w),d2
  826.     Cmp.w    (a0),d1
  827.     Bge.s    Mt_Arp4
  828.     Addq.l    #2,a0
  829.     Dbf    d7,Mt_ArpLoop
  830.     Rts
  831. Mt_Arp4    Move.w    d2,$6(a5)
  832.     Rts
  833.  
  834. Mt_GetNew
  835.     Lea    Mt_Data,a0
  836.     Move.l    a0,a3
  837.     Move.l    a0,a2
  838.     Add.l    #$c,a3
  839.     Add.l    #$3b8,a2
  840.     Add.l    #$43c,a0
  841.  
  842.     Moveq.l    #0,d0
  843.     Move.l    d0,d1
  844.     Move.b    Mt_SongPos,d0
  845.     Move.b    (a2,d0.w),d1
  846.     Asl.l    #8,d1
  847.     Asl.l    #2,d1
  848.     Add.w    Mt_PattPos,d1
  849.     Clr.w    Mt_DmaCon
  850.  
  851.     Lea    $dff0a0,a5
  852.     Lea    Mt_Voice1,a6
  853.     Move.l    #Mt_Instrument,a4
  854.     Bsr.s    Mt_PlayVoice
  855.     Lea    $dff0b0,a5
  856.     Lea    Mt_voice2,a6
  857.     Move.l    #Mt_Instrument+4,a4
  858.     Bsr.s    Mt_PlayVoice
  859.     Lea    $dff0c0,a5
  860.     Lea    Mt_Voice3,a6
  861.     Move.l    #Mt_Instrument+8,a4
  862.     Bsr.s    Mt_PlayVoice
  863.     Lea    $dff0d0,a5
  864.     Lea    Mt_Voice4,a6
  865.     Move.l    #Mt_Instrument+12,a4
  866.     Bsr.s    Mt_PlayVoice
  867.     Bra    Mt_SetDma
  868.  
  869. Mt_PlayVoice
  870.     Move.l    (a0,d1.l),(a6)
  871.     Addq.l    #4,d1
  872.     Moveq.l    #0,d2
  873.     Move.b    $2(a6),d2
  874.     And.b    #$f0,d2
  875.     Lsr.b    #4,d2
  876.     Move.b    (a6),d0
  877.     And.b    #$f0,d0
  878.     Or.b    d0,d2
  879.     Tst.b    d2
  880.     Beq    Mt_SetRegs
  881.     Moveq    #0,d3
  882.     Lea    Mt_SampleStarts,a1
  883.     Move.l    d2,d4
  884.     Subq.l    #$1,d2
  885.     Asl.l    #2,d2
  886.  
  887.     Move.l    d2,(a4)        
  888.     
  889.     cmp.l    #$dff0a0,a5
  890.     bne.s    no_equ1
  891.     move.w    #$F00,equ1+6
  892.     move.w    #$fff,equ1+14
  893.     move.w    #$f00,equ1+22    
  894. no_equ1:    
  895.     cmp.l    #$dff0b0,a5
  896.     bne.s    no_equ2
  897.     move.w    #$0a0,equ2+6
  898.     move.w    #$0f0,equ2+14
  899.     move.w    #$0a0,equ2+22    
  900. no_equ2:    
  901.     cmp.l    #$dff0c0,a5
  902.     bne.s    no_equ3
  903.     move.w    #$0aa,equ3+6
  904.     move.w    #$0ff,equ3+14
  905.     move.w    #$0aa,equ3+22    
  906. no_equ3:    
  907.     cmp.l    #$dff0d0,a5
  908.     bne.s    no_equ4
  909.     move.w    #$aa0,equ4+6
  910.     move.w    #$ff0,equ4+14
  911.     move.w    #$aa0,equ4+22    
  912. no_equ4:
  913.  
  914.     Mulu    #$1e,d4
  915.     Move.l    (a1,d2.l),$4(a6)
  916.     Move.w    (a3,d4.l),$8(a6)
  917.     Move.w    $2(a3,d4.l),$12(a6)
  918.     Move.w    $4(a3,d4.l),d3
  919.     Tst.w    d3
  920.     Beq.s    Mt_NoLoop
  921.     Move.l    $4(a6),d2
  922.     Asl.w    #1,d3
  923.     Add.l    d3,d2
  924.     Move.l    d2,$a(a6)
  925.     Move.w    $4(a3,d4.l),d0
  926.     Add.w    $6(a3,d4.l),d0
  927.     Move.w    d0,8(a6)
  928.     Move.w    $6(a3,d4.l),$e(a6)
  929.     Move.w    $12(a6),$8(a5)
  930.     Bra.w    Mt_SetRegs
  931. Mt_NoLoop
  932.  
  933.     Move.l    $4(a6),d2
  934.     Add.l    d3,d2
  935.     Move.l    d2,$a(a6)
  936.     Move.w    $6(a3,d4.l),$e(a6)
  937.     Move.w    $12(a6),$8(a5)
  938.         
  939. Mt_SetRegs
  940.     Move.w    (a6),d0
  941.     And.w    #$fff,d0
  942.     Beq    Mt_CheckCom2
  943.     Move.b    $2(a6),d0
  944.     And.b    #$F,d0
  945.     Cmp.b    #$3,d0
  946.     Bne.s    Mt_SetPeriod
  947.     Bsr    Mt_SetMyPort
  948.     Bra    Mt_checkcom2
  949. Mt_SetPeriod
  950.     Move.w    (a6),$10(a6)
  951.     And.w    #$fff,$10(a6)
  952.     Move.w    $14(a6),d0
  953.     Move.w    d0,$dff096
  954.     Move.b    #0,$1b(a6)
  955.  
  956.     Move.l    $4(a6),(a5)
  957.     Move.w    $8(a6),$4(a5)
  958.     Move.w    $10(a6),d0
  959.     And.w    #$fff,d0
  960.     Move.w    d0,$6(a5)
  961.     Move.w    $14(a6),d0
  962.     Or.w    d0,Mt_DmaCon
  963.     Bra    Mt_CheckCom2
  964.  
  965. Mt_SetDma
  966.     Move.w    #$12c,d0
  967. Mt_Wait    Dbf    d0,Mt_Wait
  968.     Move.w    Mt_DmaCon,d0
  969.     Or.w    #$8000,d0
  970.     Move.w    d0,$dff096
  971.     Move.w    #$12c,d0
  972. Mt_Wai2    Dbf    d0,Mt_Wai2
  973.     Lea    $dff000,a5
  974.     Lea    Mt_Voice4,a6
  975.     Move.l    $a(a6),$d0(a5)
  976.     Move.w    $e(a6),$d4(a5)
  977.     Lea    Mt_Voice3,a6
  978.     Move.l    $a(a6),$c0(a5)
  979.     Move.w    $e(a6),$c4(a5)
  980.     Lea    Mt_voice2,a6
  981.     Move.l    $a(a6),$b0(a5)
  982.     Move.w    $e(a6),$b4(a5)
  983.     Lea    Mt_voice1,a6
  984.     Move.l    $a(a6),$a0(a5)
  985.     Move.w    $e(a6),$a4(a5)
  986.  
  987.     Add.w    #$10,Mt_PattPos
  988.     Cmp.w    #$400,Mt_PattPos
  989.     Bne.s    Mt_Endr
  990. Mt_Nex    Clr.w    Mt_PattPos
  991.     Clr.b    Mt_Break
  992.     Addq.b    #1,Mt_SongPos
  993.     And.b    #$7f,Mt_SongPos
  994.     Move.b    Mt_SongPos,d1
  995.     Cmp.b    Mt_Data+$3b6,d1
  996.     Bne.s    Mt_Endr
  997.     Clr.b    Mt_SongPos
  998. Mt_Endr    Tst.b    Mt_Break
  999.     Bne.s    Mt_Nex
  1000.     Movem.l    (a7)+,d0-d4/a0-a3/a5-a6
  1001.     Rts
  1002.  
  1003. Mt_SetMyPort
  1004.     Move.w    (a6),d2
  1005.     And.w    #$fff,d2
  1006.     Move.w    d2,$18(a6)
  1007.     Move.w    $10(a6),d0
  1008.     Move.b    #0,$16(a6)
  1009.     Cmp.w    d0,d2
  1010.     Beq.s    Mt_ClrPort
  1011.     Bge.s    Mt_Rt
  1012.     Move.b    #$1,$16(a6)
  1013.     Rts
  1014. Mt_ClrPort
  1015.     Move.w    #0,$18(a6)
  1016. Mt_Rt    Rts
  1017.  
  1018. Mt_MyPort
  1019.     Move.b    $3(a6),d0
  1020.     Beq.s    Mt_MySlide
  1021.     Move.b    d0,$17(a6)
  1022.     Move.b    #0,$3(a6)
  1023. Mt_MySlide
  1024.     Tst.w    $18(a6)
  1025.     Beq.s    Mt_Rt
  1026.     Moveq.l    #0,d0
  1027.     Move.b    $17(a6),d0
  1028.     Tst.b    $16(a6)
  1029.     Bne.s    Mt_MySub
  1030.     Add.w    d0,$10(a6)
  1031.     Move.w    $18(a6),d0
  1032.     Cmp.w    $10(a6),d0
  1033.     Bgt.s    Mt_MyOK
  1034.     Move.w    $18(a6),$10(a6)
  1035.     Move.w    #0,$18(a6)
  1036. Mt_MyOK    Move.w    $10(a6),$6(a5)
  1037.     Rts
  1038. Mt_MySub
  1039.     Sub.w    d0,$10(a6)
  1040.     Move.w    $18(a6),d0
  1041.     Cmp.w    $10(a6),d0
  1042.     Blt.s    Mt_MyOK
  1043.     Move.w    $18(a6),$10(a6)
  1044.     Move.w    #0,$18(a6)
  1045.     Move.w    $10(a6),$6(a5)
  1046.     Rts
  1047.  
  1048. Mt_Vib    
  1049.     Move.b    $3(a6),d0
  1050.     Beq.s    Mt_Vi
  1051.     Move.b    d0,$1a(a6)
  1052.  
  1053. Mt_Vi    Move.b    $1b(a6),d0
  1054.     Lea    Mt_Sin,a4
  1055.     Lsr.w    #$2,d0
  1056.     And.w    #$1f,d0
  1057.     Moveq.l    #0,d2
  1058.     Move.b    (a4,d0.w),d2
  1059.     Move.b    $1a(a6),d0
  1060.     And.w    #$f,d0
  1061.     Mulu    d0,d2
  1062.     Lsr.w    #$6,d2
  1063.     Move.w    $10(a6),d0
  1064.     Tst.b    $1b(a6)
  1065.     Bmi.s    Mt_VibMin
  1066.     Add.w    d2,d0
  1067.     Bra.s    Mt_Vib2
  1068. Mt_VibMin
  1069.     Sub.w    d2,d0
  1070. Mt_Vib2    Move.w    d0,$6(a5)
  1071.     Move.b    $1a(a6),d0
  1072.     Lsr.w    #$2,d0
  1073.     And.w    #$3c,d0
  1074.     Add.b    d0,$1b(a6)
  1075.     Rts
  1076.  
  1077. Mt_Nop    Move.w    $10(a6),$6(a5)
  1078.     Rts
  1079.  
  1080. Mt_CheckCom
  1081.     Move.w    $2(a6),d0
  1082.     And.w    #$fff,d0
  1083.     Beq.s    Mt_Nop
  1084.     Move.b    $2(a6),d0
  1085.     And.b    #$f,d0
  1086.     Tst.b    d0
  1087.     Beq    Mt_Arpeggio
  1088.     Cmp.b    #$1,d0
  1089.     Beq.s    Mt_PortUp
  1090.     Cmp.b    #$2,d0
  1091.     Beq    Mt_PortDown
  1092.     Cmp.b    #$3,d0
  1093.     Beq    Mt_MyPort
  1094.     Cmp.b    #$4,d0
  1095.     Beq    Mt_Vib
  1096.     Move.w    $10(a6),$6(a5)
  1097.     Cmp.b    #$a,d0
  1098.     Beq.s    Mt_VolSlide
  1099.     Rts
  1100.  
  1101. Mt_VolSlide
  1102.     Moveq    #0,d0
  1103.     Move.b    $3(a6),d0
  1104.     Lsr.b    #4,d0
  1105.     Tst.b    d0
  1106.     Beq.s    Mt_VolDown
  1107.     Add.b    d0,$13(a6)
  1108.     Cmp.b    #$3f,$13(a6)
  1109.     Ble.s    Mt_Vol2        
  1110.     Move.b    #$3f,$13(a6)
  1111. Mt_Vol2    Move.w    $12(a6),$8(a5)
  1112.     Rts
  1113.  
  1114. Mt_VolDown
  1115.     Moveq    #0,d0
  1116.     Move.b    $3(a6),d0
  1117.     And.b    #$f,d0
  1118.     Sub.b    d0,$13(a6)
  1119.     Bpl.s    Mt_Vol3
  1120.     Move.b    #0,$13(a6)
  1121. Mt_Vol3    Move.w    $12(a6),$8(a5)
  1122.     Rts
  1123.  
  1124. Mt_PortUp
  1125.     Moveq    #0,d0
  1126.     Move.b    $3(a6),d0
  1127.     Sub.w    d0,$10(a6)
  1128.     Move.w    $10(a6),d0
  1129.     And.w    #$fff,d0
  1130.     Cmp.w    #$71,d0
  1131.     Bpl.s    Mt_Por2
  1132.     And.w    #$f000,$10(a6)
  1133.     Or.w    #$71,$10(a6)
  1134. Mt_Por2    Move.w    $10(a6),d0
  1135.     And.w    #$fff,d0
  1136.     Move.w    d0,$6(a5)
  1137.     Rts
  1138.  
  1139. Mt_PortDown
  1140.     Moveq.w    #0,d0
  1141.     Move.b    $3(a6),d0
  1142.     Add.w    d0,$10(a6)
  1143.     Move.w    $10(a6),d0
  1144.     And.w    #$fff,d0
  1145.     Cmp.w    #$358,d0
  1146.     Bmi.s    Mt_Por3
  1147.     And.w    #$f000,$10(a6)
  1148.     Or.w    #$358,$10(a6)
  1149. Mt_Por3    Move.w    $10(a6),d0
  1150.     And.w    #$fff,d0
  1151.     Move.w    d0,$6(a5)
  1152.     Rts
  1153.  
  1154. Mt_CheckCom2
  1155.     Move.b    $2(a6),d0
  1156.     And.b    #$f,d0
  1157.     Cmp.b    #$e,d0
  1158.     Beq.s    Mt_SetFilt
  1159.     Cmp.b    #$d,d0
  1160.     Beq.s    Mt_PattBreak
  1161.     Cmp.b    #$b,d0
  1162.     Beq.s    Mt_PosJmp
  1163.     Cmp.b    #$c,d0
  1164.     Beq.s    Mt_SetVol
  1165.     Cmp.b    #$f,d0
  1166.     Beq.s    Mt_SetSpeed
  1167.     Rts
  1168.  
  1169. Mt_SetFilt
  1170.     Move.b    $3(a6),d0
  1171.     And.b    #$1,d0
  1172.     Asl.b    #$1,d0
  1173.     And.b    #$fd,$bfe001
  1174.     Or.b    d0,$bfe001
  1175.     Rts
  1176. Mt_PattBreak            ;  ** HERE`S THE FIX - IT WAS
  1177.     Move.b    #1,Mt_Break    ;  Not.b Mt_Break.
  1178.     Rts            ;  **************************
  1179. Mt_PosJmp
  1180.     Move.b    $3(a6),d0
  1181.     Subq.b    #$1,d0
  1182.     Move.b    d0,Mt_SongPos
  1183.     Not.b    Mt_Break
  1184.     Rts
  1185. Mt_SetVol
  1186.     Cmp.b    #$3f,$3(a6)
  1187.     Ble.s    Mt_Vol4
  1188.     Move.b    #$3f,$3(a6)
  1189. Mt_Vol4    Move.b    $3(a6),$8(a5)
  1190.     Move.b    $3(a6),$13(a6)    
  1191.     Rts
  1192. Mt_SetSpeed
  1193.     Move.b    $3(a6),d0
  1194.     And.w    #$1f,d0
  1195.     Beq.s    Mt_Rts2
  1196.     Clr.b    Mt_Counter
  1197.     Move.b    d0,Mt_Speed
  1198. Mt_Rts2    Rts
  1199.  
  1200. Mt_Sin
  1201.     Dc.b $00,$18,$31,$4a,$61,$78,$8d,$a1,$b4,$c5,$d4,$e0,$eb,$f4,$fa,$fd
  1202.     Dc.b $ff,$fd,$fa,$f4,$eb,$e0,$d4,$c5,$b4,$a1,$8d,$78,$61,$4a,$31,$18
  1203.  
  1204. Mt_Periods
  1205.     Dc.w $0358,$0328,$02fa,$02d0,$02a6,$0280,$025c,$023a,$021a,$01fc,$01e0
  1206.     Dc.w $01c5,$01ac,$0194,$017d,$0168,$0153,$0140,$012e,$011d,$010d,$00fe
  1207.     Dc.w $00f0,$00e2,$00d6,$00ca,$00be,$00b4,$00aa,$00a0,$0097,$008f,$0087
  1208.     Dc.w $007f,$0078,$0071,$0000,$0000
  1209.  
  1210. Mt_Speed    Dc.b    $6
  1211. Mt_SongPos    Dc.b    $0
  1212. Mt_PattPos    Dc.w    $0
  1213. Mt_Counter    Dc.b    $0
  1214.  
  1215. Mt_Break    Dc.b    $0
  1216. Mt_DmaCon    Dc.w    $0
  1217. Mt_SampleStarts    Dcb.l    $1f,0
  1218. Mt_Voice1    Dcb.w    10,0
  1219.         Dc.w    $1
  1220.         Dcb.w    3,0
  1221.         Dc.w    0    ;new note last time
  1222. Mt_Voice2    Dcb.w    10,0
  1223.         Dc.w    $2
  1224.         Dcb.w    3,0
  1225.         Dc.w    0    ;new note last time
  1226. Mt_Voice3    Dcb.w    10,0
  1227.         Dc.w    $4
  1228.         Dcb.w    3,0
  1229.         Dc.w    0    ;new note last time
  1230. Mt_Voice4    Dcb.w    10,0
  1231.         Dc.w    $8
  1232.         Dcb.w    3,0
  1233.         Dc.w    0    ;new note last time
  1234. Mt_InstCount:    dc.b    0
  1235. Mt_Instrument:    dcb.l    4,0
  1236.  
  1237.  
  1238. star_field:
  1239.  
  1240.     sub.l    #1,delay2
  1241.     bpl.s    no_stars
  1242.     
  1243.     move.l    #0,delay2
  1244.  
  1245.     lea    sprite1+1,a0
  1246.     move.l    #sprite1num,d0
  1247. star1_loop:
  1248.     add.b    #4,(a0)
  1249.     add.l    #8,a0
  1250.     dbf    d0,star1_loop
  1251.  
  1252.     lea    sprite2+1,a0
  1253.     move.l    #sprite2num+2,d0
  1254. star2_loop:
  1255.     add.b    #3,(a0)
  1256.     add.l    #8,a0
  1257.     dbf    d0,star2_loop
  1258.  
  1259.     lea    sprite3+1,a0
  1260.     move.l    #sprite3num,d0
  1261. star3_loop:
  1262.     add.b    #2,(a0)
  1263.     add.l    #8,a0
  1264.     dbf    d0,star3_loop
  1265.  
  1266.     lea    sprite4+1,a0
  1267.     move.l    #sprite4num,d0
  1268. star4_loop:
  1269.     add.b    #1,(a0)
  1270.     add.l    #8,a0
  1271.     dbf    d0,star4_loop
  1272.  
  1273. no_stars:
  1274.     rts
  1275.     
  1276.     Section    copdat,Data_c
  1277.     
  1278. sprite1:    
  1279.         dc.w    $1E19,$1F00,$1000,$0000
  1280.         dc.w    $2176,$2200,$1000,$0000
  1281.         dc.w    $2421,$2500,$1000,$0000
  1282.         dc.w    $2814,$2900,$1000,$0000
  1283.         dc.w    $2B9F,$2C00,$1000,$0000
  1284.         dc.w    $2FE1,$3000,$1000,$0000
  1285.         dc.w    $332C,$3400,$1000,$0000
  1286.         dc.w    $3629,$3700,$1000,$0000
  1287.         dc.w    $3A31,$3B00,$1000,$0000
  1288.         dc.w    $3DD5,$3E00,$1000,$0000
  1289.         dc.w    $4021,$4100,$1000,$0000
  1290.         dc.w    $4441,$4500,$1000,$0000
  1291.         dc.w    $484A,$4900,$1000,$0000
  1292.         dc.w    $4C7B,$4D00,$1000,$0000
  1293.         dc.w    $50A5,$5100,$1000,$0000
  1294.         dc.w    $5436,$5500,$1000,$0000
  1295.         dc.w    $58B1,$5900,$1000,$0000
  1296.         dc.w    $5C45,$5D00,$1000,$0000
  1297.         dc.w    $5F12,$6000,$1000,$0000
  1298.         dc.w    $6361,$6400,$1000,$0000
  1299.         dc.w    $6698,$6700,$1000,$0000
  1300.         dc.w    $6A8E,$6B00,$1000,$0000
  1301.         dc.w    $6EEE,$6F00,$1000,$0000
  1302.         dc.w    $725C,$7300,$1000,$0000
  1303.         dc.w    $75F4,$7600,$1000,$0000
  1304.         dc.w    $79EC,$7A00,$1000,$0000
  1305.         dc.w    $7C00,$7D00,$1000,$0000
  1306.         dc.w    $7F2A,$8000,$1000,$0000
  1307.         dc.w    $82DE,$8300,$1000,$0000
  1308.         dc.w    $853C,$8600,$1000,$0000
  1309.         dc.w    $888D,$8900,$1000,$0000
  1310.         dc.w    $8BE8,$8C00,$1000,$0000
  1311.         dc.w    $8FEB,$9000,$1000,$0000
  1312.         dc.w    $929A,$9300,$1000,$0000
  1313.         dc.w    $95BC,$9600,$1000,$0000
  1314.         dc.w    $98A2,$9900,$1000,$0000
  1315.         dc.w    $9C4E,$9D00,$1000,$0000
  1316.         dc.w    $A071,$A100,$1000,$0000
  1317.         dc.w    $A435,$A500,$1000,$0000
  1318.         dc.w    $A8E7,$A900,$1000,$0000
  1319.         dc.w    $AB2F,$AC00,$1000,$0000
  1320.         dc.w    $AF49,$B000,$1000,$0000
  1321.         dc.w    $B2FA,$B300,$1000,$0000
  1322.         dc.w    $B506,$B600,$1000,$0000
  1323.         dc.w    $B9DD,$BA00,$1000,$0000
  1324.         dc.w    $BC4F,$BD00,$1000,$0000
  1325.         dc.w    $BF19,$C000,$1000,$0000
  1326.         dc.w    $C24A,$C300,$1000,$0000
  1327.         dc.w    $C676,$C700,$1000,$0000
  1328.         dc.w    $CA41,$CB00,$1000,$0000
  1329.         dc.w    $CEC8,$CF00,$1000,$0000
  1330.         dc.w    $D147,$D200,$1000,$0000
  1331.         dc.w    $D4F7,$D500,$1000,$0000
  1332.         dc.w    $D756,$D800,$1000,$0000
  1333.         dc.w    $DAF9,$DB00,$1000,$0000
  1334.         dc.w    $DE53,$DF00,$1000,$0000
  1335.         dc.w    $E2CC,$E300,$1000,$0000
  1336.         dc.w    $E60E,$E700,$1000,$0000
  1337.         dc.w    $E948,$EA00,$1000,$0000
  1338.         dc.w    $ED04,$EE00,$1000,$0000
  1339.         dc.w    $F1B5,$F200,$1000,$0000
  1340.         dc.w    $F58C,$F600,$1000,$0000
  1341.         dc.w    $F954,$FA00,$1000,$0000
  1342.         
  1343. sprite1end:    dc.w    0,0,0,0
  1344. sprite1num    equ    (sprite1end-sprite1)/8
  1345.  
  1346. sprite2:    
  1347.         dc.w    $1BBB,$1C00,$1000,$0000
  1348.         dc.w    $1F8F,$2000,$1000,$0000
  1349.         dc.w    $227D,$2300,$1000,$0000
  1350.         dc.w    $25AC,$2600,$1000,$0000
  1351.         dc.w    $2862,$2900,$1000,$0000
  1352.         dc.w    $2B36,$2C00,$1000,$0000
  1353.         dc.w    $2E1D,$2F00,$1000,$0000
  1354.         dc.w    $31D0,$3200,$1000,$0000
  1355.         dc.w    $357D,$3600,$1000,$0000
  1356.         dc.w    $3977,$3A00,$1000,$0000
  1357.         dc.w    $3C87,$3D00,$1000,$0000
  1358.         dc.w    $3F90,$4000,$1000,$0000
  1359.         dc.w    $422A,$4300,$1000,$0000
  1360.         dc.w    $4520,$4600,$1000,$0000
  1361.         dc.w    $4898,$4900,$1000,$0000
  1362.         dc.w    $4BB2,$4C00,$1000,$0000
  1363.         dc.w    $4ED4,$4F00,$1000,$0000
  1364.         dc.w    $52B8,$5300,$1000,$0000
  1365.         dc.w    $56E7,$5700,$1000,$0000
  1366.         dc.w    $597E,$5A00,$1000,$0000
  1367.         dc.w    $5CF7,$5D00,$1000,$0000
  1368.         dc.w    $5FDC,$6000,$1000,$0000
  1369.         dc.w    $6215,$6300,$1000,$0000
  1370.         dc.w    $656C,$6600,$1000,$0000
  1371.         dc.w    $6883,$6900,$1000,$0000
  1372.         dc.w    $6BBF,$6C00,$1000,$0000
  1373.         dc.w    $6ECE,$6F00,$1000,$0000
  1374.         dc.w    $71FE,$7200,$1000,$0000
  1375.         dc.w    $75F6,$7600,$1000,$0000
  1376.         dc.w    $78E0,$7900,$1000,$0000
  1377.         dc.w    $7B7F,$7C00,$1000,$0000
  1378.         dc.w    $7FD5,$8000,$1000,$0000
  1379.         dc.w    $820A,$8300,$1000,$0000
  1380.         dc.w    $8638,$8700,$1000,$0000
  1381.         dc.w    $8A0D,$8B00,$1000,$0000
  1382.         dc.w    $8E4D,$8F00,$1000,$0000
  1383.         dc.w    $9241,$9300,$1000,$0000
  1384.         dc.w    $968F,$9700,$1000,$0000
  1385.         dc.w    $9928,$9A00,$1000,$0000
  1386.         dc.w    $9D8C,$9E00,$1000,$0000
  1387.         dc.w    $A0D5,$A100,$1000,$0000
  1388.         dc.w    $A3EA,$A400,$1000,$0000
  1389.         dc.w    $A71C,$A800,$1000,$0000
  1390.         dc.w    $ABEA,$AC00,$1000,$0000
  1391.         dc.w    $AF45,$B000,$1000,$0000
  1392.         dc.w    $B30A,$B400,$1000,$0000
  1393.         dc.w    $B7DE,$B800,$1000,$0000
  1394.         dc.w    $BA8E,$BB00,$1000,$0000
  1395.         dc.w    $BDC2,$BE00,$1000,$0000
  1396.         dc.w    $C1A2,$C200,$1000,$0000
  1397.         dc.w    $C56E,$C600,$1000,$0000
  1398.         dc.w    $C962,$CA00,$1000,$0000
  1399.         dc.w    $CD54,$CE00,$1000,$0000
  1400.         dc.w    $D0E1,$D100,$1000,$0000
  1401.         dc.w    $D3A5,$D400,$1000,$0000
  1402.         dc.w    $D71E,$D800,$1000,$0000
  1403.         dc.w    $DADE,$DB00,$1000,$0000
  1404.         dc.w    $DE6A,$DF00,$1000,$0000
  1405.         dc.w    $E1FB,$E200,$1000,$0000
  1406.         dc.w    $E5B1,$E600,$1000,$0000
  1407.         dc.w    $E923,$EA00,$1000,$0000
  1408.         dc.w    $EDB7,$EE00,$1000,$0000
  1409.         dc.w    $F03A,$F100,$1000,$0000
  1410.         dc.w    $F323,$F400,$1000,$0000
  1411.         dc.w    $F6B4,$F700,$1000,$0000
  1412.         dc.w    $FA5E,$FB00,$1000,$0000
  1413. sprite2end:    dc.w    0,0,0,0
  1414. sprite2num    equ    (sprite1end-sprite1)/8
  1415.  
  1416. sprite3:    
  1417.         dc.w    $21D1,$2200,$1000,$0000
  1418.         dc.w    $24CA,$2500,$1000,$0000
  1419.         dc.w    $2773,$2800,$1000,$0000
  1420.         dc.w    $2A97,$2B00,$1000,$0000
  1421.         dc.w    $2E1B,$2F00,$1000,$0000
  1422.         dc.w    $31FD,$3200,$1000,$0000
  1423.         dc.w    $34F3,$3500,$1000,$0000
  1424.         dc.w    $3743,$3800,$1000,$0000
  1425.         dc.w    $3B45,$3C00,$1000,$0000
  1426.         dc.w    $3FD3,$4000,$1000,$0000
  1427.         dc.w    $42BD,$4300,$1000,$0000
  1428.         dc.w    $46E4,$4700,$1000,$0000
  1429.         dc.w    $4A34,$4B00,$1000,$0000
  1430.         dc.w    $4D5D,$4E00,$1000,$0000
  1431.         dc.w    $5195,$5200,$1000,$0000
  1432.         dc.w    $541F,$5500,$1000,$0000
  1433.         dc.w    $583D,$5900,$1000,$0000
  1434.         dc.w    $5C53,$5D00,$1000,$0000
  1435.         dc.w    $60F2,$6100,$1000,$0000
  1436.         dc.w    $6350,$6400,$1000,$0000
  1437.         dc.w    $674A,$6800,$1000,$0000
  1438.         dc.w    $6A3C,$6B00,$1000,$0000
  1439.         dc.w    $6D1C,$6E00,$1000,$0000
  1440.         dc.w    $7176,$7200,$1000,$0000
  1441.         dc.w    $7465,$7500,$1000,$0000
  1442.         dc.w    $7787,$7800,$1000,$0000
  1443.         dc.w    $7AA8,$7B00,$1000,$0000
  1444.         dc.w    $7EBA,$7F00,$1000,$0000
  1445.         dc.w    $82EA,$8300,$1000,$0000
  1446.         dc.w    $8612,$8700,$1000,$0000
  1447.         dc.w    $894A,$8A00,$1000,$0000
  1448.         dc.w    $8D16,$8E00,$1000,$0000
  1449.         dc.w    $9059,$9100,$1000,$0000
  1450.         dc.w    $9439,$9500,$1000,$0000
  1451.         dc.w    $97B4,$9800,$1000,$0000
  1452.         dc.w    $9B5F,$9C00,$1000,$0000
  1453.         dc.w    $9ED3,$9F00,$1000,$0000
  1454.         dc.w    $A1AB,$A200,$1000,$0000
  1455.         dc.w    $A550,$A600,$1000,$0000
  1456.         dc.w    $A994,$AA00,$1000,$0000
  1457.         dc.w    $AD9C,$AE00,$1000,$0000
  1458.         dc.w    $B050,$B100,$1000,$0000
  1459.         dc.w    $B324,$B400,$1000,$0000
  1460.         dc.w    $B75F,$B800,$1000,$0000
  1461.         dc.w    $BB75,$BC00,$1000,$0000
  1462.         dc.w    $BEC2,$BF00,$1000,$0000
  1463.         dc.w    $C1EA,$C200,$1000,$0000
  1464.         dc.w    $C42E,$C500,$1000,$0000
  1465.         dc.w    $C7F8,$C800,$1000,$0000
  1466.         dc.w    $CA41,$CB00,$1000,$0000
  1467.         dc.w    $CE0B,$CF00,$1000,$0000
  1468.         dc.w    $D285,$D300,$1000,$0000
  1469.         dc.w    $D6A6,$D700,$1000,$0000
  1470.         dc.w    $D9D9,$DA00,$1000,$0000
  1471.         dc.w    $DC32,$DD00,$1000,$0000
  1472.         dc.w    $E079,$E100,$1000,$0000
  1473.         dc.w    $E498,$E500,$1000,$0000
  1474.         dc.w    $E8BC,$E900,$1000,$0000
  1475.         dc.w    $EBA9,$EC00,$1000,$0000
  1476.         dc.w    $EE81,$EF00,$1000,$0000
  1477.         dc.w    $F2B4,$F300,$1000,$0000
  1478.         dc.w    $F6FB,$F700,$1000,$0000
  1479.         dc.w    $F951,$FA00,$1000,$0000
  1480. sprite3end:    dc.w    0,0,0,0
  1481. sprite3num    equ    (sprite1end-sprite1)/8
  1482.         
  1483. sprite4:    dc.w    $1E19,$1F00,$1000,$0000
  1484.         dc.w    $2176,$2200,$1000,$0000
  1485.         dc.w    $2421,$2500,$1000,$0000
  1486.         dc.w    $2814,$2900,$1000,$0000
  1487.         dc.w    $2B9F,$2C00,$1000,$0000
  1488.         dc.w    $2FE1,$3000,$1000,$0000
  1489.         dc.w    $332C,$3400,$1000,$0000
  1490.         dc.w    $3629,$3700,$1000,$0000
  1491.         dc.w    $3A31,$3B00,$1000,$0000
  1492.         dc.w    $3DD5,$3E00,$1000,$0000
  1493.         dc.w    $4021,$4100,$1000,$0000
  1494.         dc.w    $4441,$4500,$1000,$0000
  1495.         dc.w    $484A,$4900,$1000,$0000
  1496.         dc.w    $4C7B,$4D00,$1000,$0000
  1497.         dc.w    $50A5,$5100,$1000,$0000
  1498.         dc.w    $5436,$5500,$1000,$0000
  1499.         dc.w    $58B1,$5900,$1000,$0000
  1500.         dc.w    $5C45,$5D00,$1000,$0000
  1501.         dc.w    $5F12,$6000,$1000,$0000
  1502.         dc.w    $6361,$6400,$1000,$0000
  1503.         dc.w    $6698,$6700,$1000,$0000
  1504.         dc.w    $6A8E,$6B00,$1000,$0000
  1505.         dc.w    $6EEE,$6F00,$1000,$0000
  1506.         dc.w    $725C,$7300,$1000,$0000
  1507.         dc.w    $75F4,$7600,$1000,$0000
  1508.         dc.w    $79EC,$7A00,$1000,$0000
  1509.         dc.w    $7C00,$7D00,$1000,$0000
  1510.         dc.w    $7F2A,$8000,$1000,$0000
  1511.         dc.w    $82DE,$8300,$1000,$0000
  1512.         dc.w    $853C,$8600,$1000,$0000
  1513.         dc.w    $888D,$8900,$1000,$0000
  1514.         dc.w    $8BE8,$8C00,$1000,$0000
  1515.         dc.w    $8FEB,$9000,$1000,$0000
  1516.         dc.w    $929A,$9300,$1000,$0000
  1517.         dc.w    $95BC,$9600,$1000,$0000
  1518.         dc.w    $98A2,$9900,$1000,$0000
  1519.         dc.w    $9C4E,$9D00,$1000,$0000
  1520.         dc.w    $A071,$A100,$1000,$0000
  1521.         dc.w    $A435,$A500,$1000,$0000
  1522.         dc.w    $A8E7,$A900,$1000,$0000
  1523.         dc.w    $AB2F,$AC00,$1000,$0000
  1524.         dc.w    $AF49,$B000,$1000,$0000
  1525.         dc.w    $B2FA,$B300,$1000,$0000
  1526.         dc.w    $B506,$B600,$1000,$0000
  1527.         dc.w    $B9DD,$BA00,$1000,$0000
  1528.         dc.w    $BC4F,$BD00,$1000,$0000
  1529.         dc.w    $BF19,$C000,$1000,$0000
  1530.         dc.w    $C24A,$C300,$1000,$0000
  1531.         dc.w    $C676,$C700,$1000,$0000
  1532.         dc.w    $CA41,$CB00,$1000,$0000
  1533.         dc.w    $CEC8,$CF00,$1000,$0000
  1534.         dc.w    $D147,$D200,$1000,$0000
  1535.         dc.w    $D4F7,$D500,$1000,$0000
  1536.         dc.w    $D756,$D800,$1000,$0000
  1537.         dc.w    $DAF9,$DB00,$1000,$0000
  1538.         dc.w    $DE53,$DF00,$1000,$0000
  1539.         dc.w    $E2CC,$E300,$1000,$0000
  1540.         dc.w    $E60E,$E700,$1000,$0000
  1541.         dc.w    $E948,$EA00,$1000,$0000
  1542.         dc.w    $ED04,$EE00,$1000,$0000
  1543.         dc.w    $F1B5,$F200,$1000,$0000
  1544.         dc.w    $F58C,$F600,$1000,$0000
  1545.         dc.w    $F954,$FA00,$1000,$0000
  1546.  
  1547. sprite4end:    dc.l    0,0,0,0
  1548. sprite4num    equ    (sprite4end-sprite4)/8
  1549.  
  1550. my_copper:    
  1551.         dc.w    $100,0
  1552.         dc.w    $104,0        ; bp control reg
  1553.         dc.w    $108,0        ; bp modulo - odd
  1554.         dc.w    $10a,0        ; bp modulo - even
  1555.         dc.w    $180,0        ; colour 0 to black
  1556.         
  1557.         dc.w    $1a0,0        ; spr 1
  1558.         dc.w    $1a2,0        ; spr 2
  1559.         dc.w    $1aa,0        ; spr 3
  1560.         dc.w    $1ac,0        ; spr 4
  1561.         
  1562.         dc.w      $120
  1563. spr_1h:        dc.w    0,$122
  1564. spr_1l:        dc.w    0,$124
  1565. spr_2h:        dc.w    0,$126
  1566. spr_2l:        dc.w    0,$128
  1567. spr_3h:        dc.w    0,$12a
  1568. spr_3l:        dc.w    0,$12c
  1569. spr_4h:        dc.w    0,$12e
  1570. spr_4l:        dc.w    0
  1571.         
  1572.         dc.w    $092,$38    ; bp start horz
  1573.         dc.w    $094,$d0    ; bp stop horz
  1574.         dc.w    $08e,$2c70    ; bp window start left
  1575.         dc.w    $090,$2cb4    ; bp window bot right
  1576.  
  1577.         dc.w    $0e0
  1578. bitplane0_hi:    dc.w    0
  1579.         dc.w    $e2
  1580. bitplane0_lo:    dc.w    0,$e4
  1581. bitplane1_hi:    dc.w    0
  1582.         dc.w    $e6
  1583. bitplane1_lo:    dc.w    0,$e8
  1584. bitplane2_hi:    dc.w    0
  1585.         dc.w    $ea
  1586. bitplane2_lo:    dc.w    0,$ec
  1587. bitplane3_hi:    dc.w    0
  1588.         dc.w    $ee
  1589. bitplane3_lo:    dc.w    0
  1590.  
  1591. lline:        dc.b    top_of_copper,1
  1592.         dc.w    $ff00
  1593.  
  1594.         dc.w    $100,$4200    ; 4 bp - lores - 
  1595.         dc.w    $102,8*16+8    ; hsr
  1596.         
  1597. cmap:        dc.w    $180,0
  1598.         dc.w    $182,0
  1599.         dc.w    $184,0
  1600.         dc.w    $186,0
  1601.         dc.w    $188,0
  1602.         dc.w    $18a,0
  1603.         dc.w    $18c,0
  1604.         dc.w    $18e,0
  1605.         dc.w    $190,0
  1606.         dc.w    $192,0
  1607.         dc.w    $194,0
  1608.         dc.w    $196,0
  1609.         dc.w    $198,0
  1610.         dc.w    $19a,0
  1611.         dc.w    $19c,0
  1612.         dc.w    $19e,0
  1613.     
  1614.         dc.b    top_of_copper,1
  1615.         dc.w    $ff00,$100,0
  1616.  
  1617. tline:        dc.w    $6b01,$ff00,$180,$fff
  1618.         dc.w    $6d01,$ff00,$180,$000
  1619.         
  1620.         dc.w    $1a0,$fff    ; spr 1
  1621.         dc.w    $1a2,$ccc    ; spr 2
  1622.         dc.w    $1aa,$888    ; spr 3
  1623.         dc.w    $1ac,$444    ; spr 4
  1624.  
  1625.         dc.w    $102,shadowx
  1626.         dc.w    $100,$2200
  1627.         dc.w    $108,wide-40
  1628.         dc.w    $10a,wide-40
  1629.  
  1630.         dc.w    $0e0
  1631. bitplane4_hi:    dc.w    0,$e2
  1632. bitplane4_lo:    dc.w    0,$e4
  1633. bitplane5_hi:    dc.w    0,$e6
  1634. bitplane5_lo:    dc.w    0
  1635.  
  1636.         dc.w    $182,$666    ; shadow!!
  1637.         dc.w    $184,$fff    ;
  1638.         dc.w    $186,$fff    ;
  1639.  
  1640.         dc.w    $1a0,$fff
  1641.         dc.w    $1a2,$fff
  1642.         dc.w    $1a4,$fff
  1643.         dc.w    $1a6,$fff
  1644.         dc.w    $1a8,$fff
  1645. z
  1646.  
  1647.  
  1648. bline:        dc.w    $fd01,$ff00,$180,$fff
  1649.         dc.w    $ff01,$ff00,$180,$000
  1650.         
  1651.         dc.w    $1a0,0        ; spr 1
  1652.         dc.w    $1a2,0        ; spr 2
  1653.         dc.w    $1aa,0        ; spr 3
  1654.         dc.w    $1ac,0        ; spr 4
  1655.         
  1656.         dc.w    $ffe1,$fffe    ; wait for end of ntsc screen        
  1657.  
  1658. equ1:        dc.w    $0801,$ff00,$180,$000
  1659.         dc.w    $0901,$ff00,$180,$000
  1660.         dc.w    $0a01,$ff00,$180,$000
  1661.         dc.w    $0b01,$ff00,$180,$000
  1662.  
  1663. equ2:        dc.w    $1001,$ff00,$180,$000
  1664.         dc.w    $1101,$ff00,$180,$000
  1665.         dc.w    $1201,$ff00,$180,$000
  1666.         dc.w    $1301,$ff00,$180,$000
  1667.  
  1668. equ3:        dc.w    $1801,$ff00,$180,$000
  1669.         dc.w    $1901,$ff00,$180,$000
  1670.         dc.w    $1a01,$ff00,$180,$000
  1671.         dc.w    $1b01,$ff00,$180,$000
  1672.  
  1673. equ4:        dc.w    $2001,$ff00,$180,$000
  1674.         dc.w    $2101,$ff00,$180,$000
  1675.         dc.w    $2201,$ff00,$180,$000
  1676.         dc.w    $2301,$ff00,$180,$000
  1677.         
  1678.         dc.w    $3001,$ff00    ; wait for end of pal screen
  1679.  
  1680.         dc.w    $9c,$8010    ; irq set bits - restart vblank
  1681.         dc.w    $ffff,$fffe    ; end of copper list
  1682.     
  1683. glib:        dc.b    "graphics.library",0
  1684.         even
  1685. dlib:        dc.b    "dos.library",0
  1686.         even        
  1687.  
  1688. tadd    equ    230*46
  1689.  
  1690. tall        equ    10
  1691. wide:        equ    44
  1692. wide2:        equ    94
  1693.  
  1694. scrsize:    equ    10*40*wide
  1695.  
  1696. pagenum:    dc.l    0
  1697.  
  1698. mid:        dc.w    0
  1699. midadd:        dc.l    0
  1700. old_copper:    dc.l    0
  1701. graphics:    dc.l    0
  1702. dos:        dc.l    0
  1703.  
  1704. newscr:        dc.l    0
  1705. flag:        dc.l    0
  1706. line:        dc.l    0
  1707. scroll:        dc.l    0
  1708. delay:        dc.l    0
  1709. delay2:        dc.l    0
  1710. delay3:        dc.l    0
  1711. x1:        dc.l    wide-4
  1712. x2:        dc.l    0
  1713. page:        dc.l    0
  1714. waiting:    dc.l    0
  1715. height:        dc.l    0
  1716.  
  1717. equ1_ptr:    dc.l    0
  1718. equ2_ptr:    dc.l    0
  1719. equ3_ptr:    dc.l    0
  1720. equ4_ptr:    dc.l    0
  1721.  
  1722. scr1:        dc.l    0
  1723. scr2:        dc.l    0
  1724.  
  1725. lookup_list:    dcb.l    150,0
  1726.  
  1727. shadowx:    equ    2    ; size of x dir shadow
  1728. shadowy:    equ    2    ; size of y dir shadow
  1729.     
  1730. screen:        incbin    "usgold.bin"    ; must have the colour map before the 
  1731.                                  ; image, must be 40 horz and any
  1732.                                  ; size vertically (within reason).
  1733.  
  1734. screen2:    dc.l    0
  1735. bplen        equ    ((screen2-screen)-32)/4
  1736. top_of_copper    equ    44+(bplen/40)
  1737. down        equ    top_of_copper+108
  1738.  
  1739. font:        
  1740.         incbin    "arc2.wrd"
  1741.         ;incbin    "angels.wrd"
  1742.         ;incbin    "block.wrd"
  1743.         ;incbin    "broardway.wrd"
  1744.         ;incbin    "ninja.wrd"
  1745.         ;incbin    "chrset.wrd"
  1746.         ;incbin    "tsr.wrd"
  1747.         ;incbin    "eric.wrd"
  1748.         ;incbin    "ericbold.wrd"
  1749.         incbin    "symbol.wrd"    ; extended symbols, (alt)
  1750.  
  1751. mt_data:
  1752.         incbin    "mod.jaunty1"
  1753.         ;incbin    "mod.shmusic"
  1754.         dc.l    $19cce7a2
  1755.  
  1756.     ; line per page = 13
  1757.  
  1758. page1:    dc.b    "»»»»» LSD PRESENT «««««",0
  1759.     dc.b    " ",0
  1760.     dc.b    "­­­­­­­­­­­­­­",0
  1761.     dc.b    "JOKE INTRO TWO",0
  1762.     dc.b    "­­­­­­­­­­­­­­",0
  1763.     dc.b    " ",0
  1764.     dc.b    "80k OF IRISH JOKES TYPED BY SIDEWINDER",0
  1765.     dc.b    " ",0
  1766.     dc.b    "RELEASED AT THE ANARCHY PARTY 23/2/91",0
  1767.     dc.b    " ",0
  1768.     dc.b    "USE THE RIGHT/LEFT MOUSE BUTTON",0
  1769.     dc.b    "TO GO FORWARD/BACKWARD THROUGH THE",0
  1770.     dc.b    "PAGES AND BOTH TO QUIT",0,0
  1771.  
  1772. page2:
  1773.     dc.b    "CODED BY SHAGRATT",0
  1774.     dc.b    " ",0
  1775.     dc.b    "ALL JOKES TYPED BY SIDEWINDER",0
  1776.     dc.b    " ",0
  1777.     dc.b    "ORIGINAL MUSIC BY ZENITH",0
  1778.     dc.b    " ",0
  1779.     dc.b    "LSD LOGO BY PARASITE",0
  1780.     dc.b    " ",0
  1781.     dc.b    "ALL PUT TOGETHER BY PARASITE",0
  1782.     dc.b    "(MY ADDRESS FOLLOWS THE JOKES!)",0
  1783.     dc.b    " ",0
  1784.     dc.b    "FIRST A FEW GREETINGS ETC BEFORE",0
  1785.     dc.b    "THE SHOW STARTS...",0,0
  1786.  
  1787. page3:    dc.b    "GREETINGS GO TO THE FOLLOWING",0 
  1788.     dc.b    "(IN NO SPECIAL ORDER)",0
  1789.     dc.b    " ",0
  1790.     dc.b    "LIGHTFOOT & THE MIGHTY DRUIDS,",0
  1791.     dc.b    "COSY & MAGNETIC FIELDS,",0
  1792.     dc.b    "MOLE & ANARCHY,",0
  1793.     dc.b    "POD & ANDI OF SLIPSTREAM,",0
  1794.     dc.b    "TURMOIL & SCOOPEX,",0
  1795.     dc.b    "MONTY PYTHON,",0
  1796.     dc.b    "INDEX & RELAY,",0
  1797.     dc.b    "COUNT ZERO & BETRAYAL,",0
  1798.     dc.b    "TRIPWIRE & EQUINOX,",0
  1799.     dc.b    "TAURUS & ECSTASY",0
  1800.     dc.b    0,0
  1801.     
  1802. page4:
  1803.     dc.b    "AND TO...",0
  1804.     dc.b    " ",0
  1805.     dc.b    "POLTERGEIST & CYRUS 1991,",0
  1806.     dc.b    "AWOL & PENDLE EUROPA,",0
  1807.     dc.b    "CYLON,",0
  1808.     dc.b    "GARY,",0
  1809.     dc.b    "SPIRIT,",0
  1810.     dc.b    "ALISTER,",0
  1811.     dc.b    "SANITY",0
  1812.     dc.b    "KEITH,",0
  1813.     dc.b    "TIMBO,",0
  1814.     dc.b    "MAVERICK",0
  1815.     dc.b    "THE SLAVE,",0,0
  1816.  
  1817. page5:
  1818.     dc.b    "AND TO...",0
  1819.     dc.b    " ",0
  1820.     dc.b    "NASTY BOY,",0
  1821.     dc.b    "BILLY BONE,",0
  1822.     dc.b    "CTHULHU,",0
  1823.     dc.b    "THE TURKISH VAMPIRE,",0
  1824.     dc.b    "JOHNNY,",0
  1825.     dc.b    "BOB,",0
  1826.     dc.b    "GEOFF,",0
  1827.     dc.b    "AJAD,",0
  1828.     dc.b    "ROD,",0
  1829.     dc.b    " ",0
  1830.     dc.b    "AND ALL AT THE PARTY!",0
  1831.     dc.b    0,0
  1832.  
  1833. page6:    dc.b    "AND NOW THE IRISH JOKES",0
  1834.     dc.b    " ",0
  1835.     dc.b    "SOME OF THESE CONTAIN OFFENSIVE",0
  1836.     dc.b    "MATERIAL, SO IF YOU ARE EASLY OFFENDED",0
  1837.     dc.b    "QUIT THIS INTRO NOW!",0
  1838.     dc.b    " ",0
  1839.     dc.b    "NOTE THAT THERE ARE OVER 200 PAGES &",0
  1840.     dc.b    "WILL TAKE ABOUT 2 HOURS TO READ THEM!",0
  1841.     dc.b    " ",0
  1842.     dc.b    "AND REMEMBER, THE REASON IRISH JOKES",0
  1843.     dc.b    "ARE SO STUPID IS SO THE ENGLISH CAN",0
  1844.     dc.b    "UNDERSTAND THEM",0,0
  1845.  
  1846. para:    dc.b    "IF YOU WANNA CONTACT PARASITE OF LSD",0    
  1847.     dc.b    "FOR SWAPPING, OR ANYTHING IN GENERAL",0
  1848.     dc.b    " ",0
  1849.     dc.b    "THEN WRITE TO...",0
  1850.     dc.b    " ",0
  1851.     dc.b    "PARASITE",0
  1852.     dc.b    "18, BROCKLESBY CLOSE",0
  1853.     dc.b    "GAINSBOROUGH",0
  1854.     dc.b    "LINCS",0
  1855.     dc.b    "DN21 1TT",0
  1856.     dc.b    " ",0
  1857.     dc.b    "OH NO... ITS ALL GONNA LOOP!",0,0
  1858.  
  1859. jke01:    dc.b    "An Irish priest on a trip to Israel",0
  1860.     dc.b    "was horrified when quoted an",0
  1861.     dc.b    "outrageous price to be ferried across",0
  1862.     dc.b    "the Sea of Galilee.  As he stalked",0
  1863.     dc.b    "off he was heard muttering",0
  1864.     dc.b    " 'No wonder Jesus walked!'",0
  1865.     dc.b    " ",0
  1866.     dc.b    "An Irish conman went to New York but",0
  1867.     dc.b    "he didn't have a great deal of luck.",0
  1868.     dc.b    "The first man that he tried to sell",0
  1869.     dc.b    "the Brooklyn Bridge turned out to be",0
  1870.     dc.b    "the owner and the Irishman had to pay",0
  1871.     dc.b    "him $50 so he wouldn't tell the cops.",0,0
  1872.     
  1873.     
  1874. jke02:    dc.b    "An Irishman on a building site was",0
  1875.     dc.b    "working at a tremendous rate.  Every",0
  1876.     dc.b    "two minutes he dashed up a ladder",0
  1877.     dc.b    "with an enormous load of bricks.",0
  1878.     dc.b    "After this had been going on for an",0
  1879.     dc.b    "hour a friend asked why he was",0
  1880.     dc.b    "working so hard.",0
  1881.     dc.b    "'Oh' he said. 'Don't tell anyone but",0
  1882.     dc.b    "I've got them all fooled.  I'm not",0
  1883.     dc.b    "working hard at all - it's the same",0
  1884.     dc.b    "load of bricks every time!'",0,0
  1885.  
  1886.  
  1887. jke03:    dc.b    "An eminent Irish archaeologist was",0
  1888.     dc.b    "giving a lecture in an American",0
  1889.     dc.b    "university.",0
  1890.     dc.b    "'Some of the cities of the past'",0
  1891.     dc.b    "he said sombrely 'have vanished so",0
  1892.     dc.b    "completely that it's doubtful if some",0
  1893.     dc.b    "of them existed at all.'",0
  1894.     dc.b    " ",0
  1895.     dc.b    "An Irish intellectual has been",0
  1896.     dc.b    "defined as one who goes to a museum",0
  1897.     dc.b    "or art gallery when it isn't raining.",0,0
  1898.     
  1899. jke04:    dc.b    "Two young lads from the west coast",0
  1900.     dc.b    "took a trip to Dublin and while they",0
  1901.     dc.b    "were there they went to the cinema",0
  1902.     dc.b    "for the first time.  The film had",0
  1903.     dc.b    "already started and the cinema was",0
  1904.     dc.b    "very dark and so the usherette walked",0
  1905.     dc.b    "down the aisle towards them with her",0
  1906.     dc.b    "torch.",0
  1907.     dc.b    "'Look out' said one of the lads to",0
  1908.     dc.b    "the other 'there's a bicycle up ahead.'",0,0
  1909.  
  1910. jke05:    dc.b    "How do you recognise an Irishman in a",0
  1911.     dc.b    "car wash?",0
  1912.     dc.b    "He'll be sitting on a bicycle.",0
  1913.     dc.b    " ",0
  1914.     dc.b    "You can always tell an Irish pirate.",0
  1915.     dc.b    "he's the one with a patch over each",0
  1916.     dc.b    "eye!",0
  1917.     dc.b    " ",0
  1918.     dc.b    "An Irishman bought a washing machine",0
  1919.     dc.b    "for his wife on a new hire purchase",0
  1920.     dc.b    "scheme.  'it's a wonderful system'",0
  1921.     dc.b    "he told her '100 per cent down and",0
  1922.     dc.b    "nothing to pay each week.'",0,0
  1923.  
  1924. jke06:    dc.b    "An American tourist was amazed at the",0
  1925.     dc.b    "speed with which a local was putting",0
  1926.     dc.b    "away Guinness in a Dublin pub and so",0
  1927.     dc.b    "bet him £20 that he couldn't drink",0
  1928.     dc.b    "ten pints in fifteen minutes.  The",0
  1929.     dc.b    "Irishman asked for a few minutes to",0
  1930.     dc.b    "prepare and then left the pub.",0
  1931.     dc.b    "Twenty minutes later he came back and",0
  1932.     dc.b    "drank ten pints of Guinness in",0
  1933.     dc.b    "fifteen minutes.  'I knew I could do",0
  1934.     dc.b    "it' he said 'because I just did it",0
  1935.     dc.b    "in the pub down the road.'",0,0
  1936.  
  1937. jke07:    
  1938.     dc.b    "An irishwoman was given a pair of",0
  1939.     dc.b    "rubber gloves.  When he asked her how",0
  1940.     dc.b    "she was getting on with them",0
  1941.     dc.b    "she said 'They're really very good.",0
  1942.     dc.b    "When you've got them on",0
  1943.     dc.b    "you can wash your hands without",0
  1944.     dc.b    "getting them wet.'",0
  1945.     dc.b    " ",0
  1946.     dc.b    "Did you hear about the Irishman who",0
  1947.     dc.b    "was given a pair of cuff-links for",0
  1948.     dc.b    "his birthday?",0
  1949.     dc.b    "He had no use for them - he couldn't",0
  1950.     dc.b    "find anywhere to get his wrists pierced.",0,0
  1951.     
  1952. jke08:    dc.b    "An extremely ugly Irishman claimed",0
  1953.     dc.b    "that he had been very beautiful as a",0
  1954.     dc.b    "baby but that he'd been exchanged by",0
  1955.     dc.b    "the gypsies.",0
  1956.     dc.b    " ",0
  1957.     dc.b    "An Irishman carrying two big bags of",0
  1958.     dc.b    "telephones was stopped at the customs",0
  1959.     dc.b    "in New York & asked what they were for.",0
  1960.     dc.b    "'I don't know' he said 'I've got a",0
  1961.     dc.b    "job with a small jazz band over here",0
  1962.     dc.b    "and they asked me to bring two sacks",0
  1963.     dc.b    "of phones with me.'",0,0
  1964.     
  1965. jke09:    dc.b    "Then there was the Irish kidnapper",0
  1966.     dc.b    "who enclosed a stamp addressed",0
  1967.     dc.b    "envelope with the ransom note.",0
  1968.     dc.b    " ",0
  1969.     dc.b    "After trying on caps for over half an",0
  1970.     dc.b    "hour an Irishman turned to the shop",0
  1971.     dc.b    "assistant and said 'Have you got one",0
  1972.     dc.b    "with a peak at the back?'",0
  1973.     dc.b    " ",0
  1974.     dc.b    "Did you hear about the Irish bank",0
  1975.     dc.b    "clerk who spent all his spare time",0
  1976.     dc.b    "sitting in a tree?",0
  1977.     dc.b    "He wanted to be a branch manager.",0,0
  1978.     
  1979. jke10:    dc.b    "An Irish detective arrested a",0
  1980.     dc.b    "criminal & was about to handcuff him",0
  1981.     dc.b    "when a huge gust of wind blew the",0
  1982.     dc.b    "detective's hat off. 'Shall I go and",0
  1983.     dc.b    "fetch it?' the prisoner said. 'You",0
  1984.     dc.b    "take me for a fool?' he replied.",0
  1985.     dc.b    "'You wait here while I go & get it!'",0
  1986.     dc.b    " ",0
  1987.     dc.b    "An Englishman met an Irishman limping",0
  1988.     dc.b    "along the road wearing only one shoe.",0
  1989.     dc.b    "'What's up?' he asked. 'Lost a shoe?'",0
  1990.     dc.b    "'No' he replied, 'Just found one!'",0,0
  1991.     
  1992. jke11:    dc.b    "A terrified Irishman was taking his",0
  1993.     dc.b    "first plane ride.  He buckled himself",0
  1994.     dc.b    "in & a huge Scotsman sat down next to",0
  1995.     dc.b    "him.  After take-off the Scotsman",0
  1996.     dc.b    "fell asleep.  The poor Irishman",0
  1997.     dc.b    "was feeling very sick but was",0
  1998.     dc.b    "frightened to wake the giant next to",0
  1999.     dc.b    "him.  Finally he left it too long and",0
  2000.     dc.b    "was sick over the Scotsman.  The",0
  2001.     dc.b    "Scotsman woke up & was amazed to see ",0
  2002.     dc.b    "vomit all over his sporran and kilt.",0
  2003.     dc.b    "'Do you feel better now?' asked the",0
  2004.     dc.b    "Irishman.",0,0
  2005.     
  2006. jke12:    dc.b    "An Irishman arrived home from the pub",0
  2007.     dc.b    "early and found his wife in bed with",0
  2008.     dc.b    "another man. 'What on earth are you",0
  2009.     dc.b    "doing?' he shrieked.  His wife looked",0
  2010.     dc.b    "at the man next to her and said",0
  2011.     dc.b    "'Didn't I tell you he was stupid?'",0
  2012.     dc.b    " ",0
  2013.     dc.b    "An Irish hen was so exasperated with",0
  2014.     dc.b    "one of her impish chicks that she",0
  2015.     dc.b    "said 'If your father could see you",0
  2016.     dc.b    "now he'd turn in his gravy.'",0,0
  2017.  
  2018. jke13:    dc.b    "Did you hear about the really mean",0
  2019.     dc.b    "Irishman who fired his shotgun",0
  2020.     dc.b    "outside the backdoor on Christmas",0
  2021.     dc.b    "Eve?",0
  2022.     dc.b    "He went in and told his children that",0
  2023.     dc.b    "Father Christmas had committed",0
  2024.     dc.b    "suicide.",0
  2025.     dc.b    " ",0
  2026.     dc.b    "An Irishman who was fed up with being",0
  2027.     dc.b    "bothered by hitch-hikers solved the",0
  2028.     dc.b    "problem.  Whenever he drove out of",0
  2029.     dc.b    "town he just put up the notice 'TAXI'.",0,0
  2030.  
  2031. jke14:    dc.b    "Two old Irishmen were sitting in the",0
  2032.     dc.b    "corner of what had been their",0
  2033.     dc.b    "favourite pub - until it had been",0
  2034.     dc.b    "redecorated and the juke box put in.",0
  2035.     dc.b    "'Ah you know' said one 'I miss the",0
  2036.     dc.b    "old ways and the old days.  I miss",0
  2037.     dc.b    "the sawdust, I miss the spittoon...'",0
  2038.     dc.b    "'You always did' said the other.",0
  2039.     dc.b    " ",0
  2040.     dc.b    "An Irish lawyer was once asked what",0
  2041.     dc.b    "the penalty for bigamy was.",0
  2042.     dc.b    "'Two mothers-in-law' he replied.",0,0
  2043.  
  2044. jke15:    dc.b    "An Irishman was once hired by the",0
  2045.     dc.b    "managing director of a large bank to",0
  2046.     dc.b    "do some odd jobs around his house.",0
  2047.     dc.b    "When he got the bill he was furious.",0
  2048.     dc.b    "'You're charging me £20 an hour. Why",0
  2049.     dc.b    "I don't even earn that' he said.",0
  2050.     dc.b    "'Neither did I when I was managing",0
  2051.     dc.b    "director of a bank' said the",0
  2052.     dc.b    "Irishman.",0
  2053.     dc.b    " ",0
  2054.     dc.b    "Funny how all the newspaper stories",0
  2055.     dc.b    "about Irish social events seem to",0
  2056.     dc.b    "begin:  Among the injured were...",0,0
  2057.  
  2058. jke16:    dc.b    "Then there was the Irishman whose",0
  2059.     dc.b    "sister had a baby.  Nobody told him",0
  2060.     dc.b    "if it was a boy or a girl so he",0
  2061.     dc.b    "didn't know if he was an uncle or an",0
  2062.     dc.b    "aunt.",0
  2063.     dc.b    " ",0
  2064.     dc.b    "Did you hear about the Irishman who",0
  2065.     dc.b    "gave a lift to a beautiful young",0
  2066.     dc.b    "witch.  They hadn't gone a few miles",0
  2067.     dc.b    "when she touched him on the knee and",0
  2068.     dc.b    "he turned into a lay-by.",0,0
  2069.     
  2070. jke17:    dc.b    "Irishman:  Sir I wonder if you could",0
  2071.     dc.b    "let me off work tomorrow as my wife",0
  2072.     dc.b    "wants me to go shopping with her?",0
  2073.     dc.b    "Boss:  Certainly not.  We're busy.",0
  2074.     dc.b    "Irishman:  Thank you sir.  You're",0
  2075.     dc.b    "very kind.",0
  2076.     dc.b    " ",0
  2077.     dc.b    "Irishman:  You remind me of that",0
  2078.     dc.b    "Welshman Jones.",0
  2079.     dc.b    "Scot.:  But I'm not at all like",0
  2080.     dc.b    "Jones.",0
  2081.     dc.b    "Irishman:  Oh yes you are!  You both",0
  2082.     dc.b    "owe me £10!",0,0
  2083.  
  2084. jke18:    dc.b    "Old Irishman:  And then there was the",0
  2085.     dc.b    "time I was attacked by five hungry",0
  2086.     dc.b    "lions...",0
  2087.     dc.b    "Young man:  Oh come on grandad.",0
  2088.     dc.b    "Last time you told me that story it",0
  2089.     dc.b    "was three lions!",0
  2090.     dc.b    "Old Irishman:  I know but then you",0
  2091.     dc.b    "were too young to be told the whole",0
  2092.     dc.b    "frightening truth.",0,0
  2093.  
  2094. jke19:    dc.b    "A vacuum cleaner salesman went to a",0
  2095.     dc.b    "very remote farmhouse on the west",0
  2096.     dc.b    "coast of Ireland and before the",0
  2097.     dc.b    "woman of the house could object",0
  2098.     dc.b    "started throwing all manner of dirt",0
  2099.     dc.b    "on the carpet.",0
  2100.     dc.b    "'Madam' he said 'I have so much",0
  2101.     dc.b    "confidence in this machine that if",0
  2102.     dc.b    "this carpet is not spotless after",0
  2103.     dc.b    "it's been over it then I will eat",0
  2104.     dc.b    "all the dirt that is left.'",0
  2105.     dc.b    "'You'd better start eating she said",0
  2106.     dc.b    "'we haven't got electricity yet.'",0,0
  2107.  
  2108. jke20:    dc.b    "An Irishman put 10 pence into the",0
  2109.     dc.b    "collection at church one Sunday.",0
  2110.     dc.b    "'What' he asked the young priest",0
  2111.     dc.b    "standing by the plate'happens to",0
  2112.     dc.b    "all this money?'",0
  2113.     dc.b    "'It goes to the Lord' answered the",0
  2114.     dc.b    "priest.",0
  2115.     dc.b    "'Oh well' said the Irishman",0
  2116.     dc.b    "removing his 10 pence from the plate",0
  2117.     dc.b    "'I'm seventy-five years old and I'm",0
  2118.     dc.b    "bound to see the Lord before a young",0
  2119.     dc.b    "man like you and I can give it to",0
  2120.     dc.b    "him personally.'",0,0
  2121.     
  2122.     
  2123. jke21:    dc.b    "An Irishman was asked to answer a",0
  2124.     dc.b    "riddle by the barman in his local.",0
  2125.     dc.b    "'My mother gave birth to a child:",0
  2126.     dc.b    "it's not my sister and it's not my",0
  2127.     dc.b    "brother.  Who is it?'  the Irishman",0
  2128.     dc.b    "had to admit defeat.  'It's me said",0
  2129.     dc.b    "the barman.  Thinking what a good",0
  2130.     dc.b    "riddle it was the man put it to his",0
  2131.     dc.b    "wife when he got home.  She thought",0
  2132.     dc.b    "and finally she too gave up.  'It's",0
  2133.     dc.b    "Jack the barman in the Rose and",0
  2134.     dc.b    "Crown hooted the Irishman.",0,0
  2135.     
  2136. jke22:    dc.b    "An old Irishman was bragging about",0
  2137.     dc.b    "his longevity, 'I'm eighty-three",0
  2138.     dc.b    "years old and I've never smoked",0
  2139.     dc.b    "gambled drank or looked at a woman",0
  2140.     dc.b    "in all that time.'  His grandson",0
  2141.     dc.b    "looked up sadly and said",0
  2142.     dc.b    "'I can't think why you wanted to",0
  2143.     dc.b    "live for so long.'",0
  2144.     dc.b    " ",0
  2145.     dc.b    "Then there was the Irishman who was",0
  2146.     dc.b    "so broke that he got a visit from the",0
  2147.     dc.b    "blood bank because his blood had",0
  2148.     dc.b    "bounced.",0,0
  2149.  
  2150. jke23:    dc.b    "A blind man was sitting with a bowl",0
  2151.     dc.b    "in a Dublin Street.  A woman threw a",0
  2152.     dc.b    "10 pence piece at the bowl but it",0
  2153.     dc.b    "missed and rolled in the gutter.",0
  2154.     dc.b    "Before the astonished woman could say",0
  2155.     dc.b    "anything the blind man got up and",0
  2156.     dc.b    "retrieved the coin. 'I thought you",0
  2157.     dc.b    "were blind!' said the outraged woman.",0
  2158.     dc.b    "'Oh no.  I'm not blind at all' said",0
  2159.     dc.b    "the man 'I'm sitting in for the real",0
  2160.     dc.b    "blind man who's gone to the cinema.'",0,0
  2161.     
  2162. jke24:    dc.b    "An Irishman had been going on at",0
  2163.     dc.b    "great lengths about how wonderful his",0
  2164.     dc.b    "wife was and how happy he was.",0
  2165.     dc.b    "Finally one of his listeners fed",0
  2166.     dc.b    "up said 'Surely she must have some",0
  2167.     dc.b    "faults!'",0
  2168.     dc.b    "The Irishman thought very hard for a",0
  2169.     dc.b    "few minutes and then said 'Well she",0
  2170.     dc.b    "does have a tendency to use foul",0
  2171.     dc.b    "language when she's drunk.'",0,0
  2172.     
  2173. jke25:    dc.b    "An Irishman was telling a",0
  2174.     dc.b    "neighbouring farmer about his sick",0
  2175.     dc.b    "cow and the farmer told him that when",0
  2176.     dc.b    "his cow got sick he dosed her with",0
  2177.     dc.b    "arsenic.  When the Irishman got back",0
  2178.     dc.b    "he dosed his cow with arsenic - and",0
  2179.     dc.b    "she died.",0
  2180.     dc.b    "He stalked off to see his friend  who",0
  2181.     dc.b    "said 'That's funny.  So did mine.'",0,0
  2182.     
  2183. jke26:    dc.b    "Do you know the difference between",0
  2184.     dc.b    "baloney and blarney?  To tell a woman",0
  2185.     dc.b    "of forty-five that she looks like a",0
  2186.     dc.b    "young girl is baloney.  To ask her",0
  2187.     dc.b    "how old she is so that you'll know",0
  2188.     dc.b    "at what age a woman looks her best",0
  2189.     dc.b    "is blarney.",0
  2190.     dc.b    " ",0
  2191.     dc.b    "An Irishman opened a newspaper and",0
  2192.     dc.b    "was amazed to read his own obituary.",0
  2193.     dc.b    "Much amused he telephoned his best",0
  2194.     dc.b    "friend who asked him where he was",0
  2195.     dc.b    "ringing from...",0,0
  2196.     
  2197. jke27:    dc.b    "An Irishman's mother-in-law passed on",0
  2198.     dc.b    "and his wife asked him what sort of",0
  2199.     dc.b    "gravestone they should get her.",0
  2200.     dc.b    "'Something very heavy' he replied.",0
  2201.     dc.b    " ",0
  2202.     dc.b    "How can you tell when an Irish",0
  2203.     dc.b    "invalid is getting better?",0
  2204.     dc.b    "When he tries to blow the froth off",0
  2205.     dc.b    "his medicine.",0,0
  2206.     
  2207. jke28a:    dc.b    "A very tall man wearing a cowboy hat",0
  2208.     dc.b    "was on a Aer Lingus flight to",0
  2209.     dc.b    "Shannon.  The stewardess asked him if",0
  2210.     dc.b    "he'd like a drink and he replied:",0
  2211.     dc.b    "'Sure would a whisky.  By the way",0
  2212.     dc.b    "the name's Brown: B-R-O-W-N.  I'm",0
  2213.     dc.b    "from Texas, I'm six feet six inches",0
  2214.     dc.b    "tall.  I'm white from my head to the",0
  2215.     dc.b    "tips of my toes and I hate the",0
  2216.     dc.b    "Irish.' The stewardess smiled warily",0
  2217.     dc.b    "and gave him his drink.  As he was",0
  2218.     dc.b    "sipping it he turned to the man",0
  2219.     dc.b    "sitting next to him and said: The >>>",0,0
  2220.     
  2221. jke28b:    dc.b    "name's Brown: that's spelt B-R-O-W-N.",0
  2222.     dc.b    "I'm from Texas  I'm six feet six",0
  2223.     dc.b    "inches tall.  I'm white from the top",0
  2224.     dc.b    "of my head to the tips of my toes and",0
  2225.     dc.b    "I hate the Irish.'  The man looked at",0
  2226.     dc.b    "him for a moment and then said  'How",0
  2227.     dc.b    "do you do?  My name is Patrick",0
  2228.     dc.b    "O'Reilly.  I'm from Dublin and I'm",0
  2229.     dc.b    "five feet five inches tall.  I'm",0
  2230.     dc.b    "white from the top of my head to the",0
  2231.     dc.b    "tips of my toes - apart that is",0
  2232.     dc.b    "from my rectum which is brown.  Spelt",0
  2233.     dc.b    "B-R-O-W-N.'",0,0
  2234.     
  2235. jke29:    dc.b    "The priest was giving one of his",0
  2236.     dc.b    "parishioners his usual lecture.",0
  2237.     dc.b    "'Abstinence' he said 'is a",0
  2238.     dc.b    "wonderful thing Patrick.'",0
  2239.     dc.b    "'Sure and I know it is Father'",0
  2240.     dc.b    "said Patrick 'if practised in",0
  2241.     dc.b    "moderation.'",0
  2242.     dc.b    " ",0
  2243.     dc.b    "First Irishman: O'Reilly does other",0
  2244.     dc.b    "things besides drink.",0
  2245.     dc.b    "Second Irishman: Like what?",0
  2246.     dc.b    "First Irishman: Well he hiccups.",0,0
  2247.     
  2248. jke30:    dc.b    "The magistrate was giving judgement:",0
  2249.     dc.b    "'Young man' he said sternly 'it is",0
  2250.     dc.b    "alcohol and alcohol alone that is",0
  2251.     dc.b    "responsible for your appearance",0
  2252.     dc.b    "before this bench.' 'I'm glad to hear",0
  2253.     dc.b    "you say that your honour' said the",0
  2254.     dc.b    "young Irishman. 'Everyone else says",0
  2255.     dc.b    "its me own fault.'",0
  2256.     dc.b    " ",0
  2257.     dc.b    "Advertisement in a Dublin newspaper:",0
  2258.     dc.b    "Second hand tombstone for sale.",0
  2259.     dc.b    "Ideal for person named O'Reilly.",0,0
  2260.     
  2261. jke31:    dc.b    "When her husband fell out of the",0
  2262.     dc.b    "window of a high rise building to his",0
  2263.     dc.b    "death Mrs O'Reilly collected a very",0
  2264.     dc.b    "large sum from the insurance company.",0
  2265.     dc.b    "But then came the lawyers relatives",0
  2266.     dc.b    "bills etc. and she was in such a",0
  2267.     dc.b    "state that the doctor was called.",0
  2268.     dc.b    "'Sometimes' she said to him 'I",0
  2269.     dc.b    "almost wish that me husband hadn't",0
  2270.     dc.b    "fallen out of the window.'",0,0
  2271.     
  2272. jke32:    dc.b    "Two very drunk Englishmen were",0
  2273.     dc.b    "arguing about whether or not the orb",0
  2274.     dc.b    "beaming from the heavens was the sun",0
  2275.     dc.b    "or the moon.  An Irishman came",0
  2276.     dc.b    "lurching towards them and one of the",0
  2277.     dc.b    "Englishmen said 'Say sir is that",0
  2278.     dc.b    "the sun or the moon up there?",0
  2279.     dc.b    "'I'm afraid I don't know' said the",0
  2280.     dc.b    "Irishman' I'm a stranger here myself.'",0
  2281.     dc.b    " ",0
  2282.     dc.b    "The Irish space programme has run",0
  2283.     dc.b    "into a technical hitch: The astronaut",0
  2284.     dc.b    "keeps falling off the kite.",0,0
  2285.     
  2286. jke33:    dc.b    "O'Reilly was a little bit maudlin and",0
  2287.     dc.b    "turned to his best friend and said",0
  2288.     dc.b    "'I'd like you to promise me Eammon",0
  2289.     dc.b    "that when I'm dead and buried you'll",0
  2290.     dc.b    "pour a bottle of good Irish whiskey",0
  2291.     dc.b    "over me grave.'",0
  2292.     dc.b    "'Sure and I'll do that' answered",0
  2293.     dc.b    "his friend. 'Would you have any",0
  2294.     dc.b    "objections to it passing through my",0
  2295.     dc.b    "kidneys first?'",0,0
  2296.     
  2297. jke34:    dc.b    "First Irishman: I always like to go",0
  2298.     dc.b    "to O'Reilly's birthday and help him",0
  2299.     dc.b    "drink up his presents.",0
  2300.     dc.b    "Second Irishman: I don't really drink",0
  2301.     dc.b    "myself.  I just gargle with whiskey",0
  2302.     dc.b    "and sometimes it slips down.",0
  2303.     dc.b    " ",0
  2304.     dc.b    "A young Irish lass was on the",0
  2305.     dc.b    "underground in London and a young",0
  2306.     dc.b    "English gallant asked her if she",0
  2307.     dc.b    "would like to sit down.  'No thank",0
  2308.     dc.b    "you' she said 'I'm in a hurry.'",0,0
  2309.     
  2310. jke35:    dc.b    "An Englishman walked into a bar in",0
  2311.     dc.b    "Dublin and said to the barman",0
  2312.     dc.b    "'That's so quaint - putting sawdust",0
  2313.     dc.b    "on the floor.' ",0
  2314.     dc.b    "'That isn't sawdust' answered the",0
  2315.     dc.b    "barman, 'that's yesterday's",0
  2316.     dc.b    "furniture.'",0
  2317.     dc.b    " ",0
  2318.     dc.b    "Priest:  What evil could be possibly",0
  2319.     dc.b    "worse than drink?",0
  2320.     dc.b    "Parishioner:  Thirst?",0,0
  2321.     
  2322. jke36:    dc.b    "The judge looked angrily down at the",0
  2323.     dc.b    "prisoner in the dock 'Why' he asked",0
  2324.     dc.b    "'did you kick and punch this man so ",0
  2325.     dc.b    "brutally?'",0
  2326.     dc.b    "'Sure and it was all a terrible",0
  2327.     dc.b    "mistake your honour.  I had alcohol",0
  2328.     dc.b    "taken and was a little confused.  I",0
  2329.     dc.b    "thought it was me wife.'",0
  2330.     dc.b    " ",0
  2331.     dc.b    "How do you make an Irish cocktail?",0
  2332.     dc.b    "put a potato in a pint of Guinness.",0,0
  2333.     
  2334. jke37:    dc.b    "One of O'Reilly's friends asked him",0
  2335.     dc.b    "why he no longer wore glasses.",0
  2336.     dc.b    "'I read so much about the evils of",0
  2337.     dc.b    "drinking' he replied 'either I had",0
  2338.     dc.b    "to give up drinking or I had to give",0
  2339.     dc.b    "up reading.'",0
  2340.     dc.b    " ",0
  2341.     dc.b    "How can you tell if an Irishman is an",0
  2342.     dc.b    "aristocrat?",0
  2343.     dc.b    "His tattoos has no spelling mistakes",0
  2344.     dc.b    "in it.",0,0
  2345.     
  2346. jke38:    dc.b    "First Irishman: Me uncle fell down",0
  2347.     dc.b    "two flights of stairs with a crate of",0
  2348.     dc.b    "Guinness and he didn't spill a drop.",0
  2349.     dc.b    "Second Irishman: How on earth did he",0
  2350.     dc.b    "manage that?",0
  2351.     dc.b    "First Irishman: He kept his mouth",0
  2352.     dc.b    "closed.",0
  2353.     dc.b    " ",0
  2354.     dc.b    "A policeman saw an Irishman sitting",0
  2355.     dc.b    "on top of an oak tree and asked him",0
  2356.     dc.b    "what he was doing up there.  'I don't",0
  2357.     dc.b    "know' said the man 'I think I must",0
  2358.     dc.b    "have sat on an acorn.'",0,0
  2359.     
  2360. jke39:    dc.b    "First Irishman: Would you say that",0
  2361.     dc.b    "O'Reilly drinks a lot?",0
  2362.     dc.b    "Second Irishman: I wouldn't say so.",0
  2363.     dc.b    "I think he drinks to calm himself>",0
  2364.     dc.b    "First Irishman: Well that would",0
  2365.     dc.b    "explain it.  Last night he was so",0
  2366.     dc.b    "calm he couldn't move.",0
  2367.     dc.b    " ",0
  2368.     dc.b    "Did you hear about the Irish",0
  2369.     dc.b    "terrorist who tried to blow up a bus?",0
  2370.     dc.b    "He burnt his mouth on the exhaust pipe.",0,0
  2371.  
  2372. jke40:    dc.b    "O'Reilly was very drunk and clambered",0
  2373.     dc.b    "unsteadily on to a bus.  He lurched",0
  2374.     dc.b    "along it before sitting next to a",0
  2375.     dc.b    "priest. 'I'm not going to heaven' he",0
  2376.     dc.b    "sighed. 'I'm not going to heaven.",0
  2377.     dc.b    "I'm not going to heaven because there",0
  2378.     dc.b    "is no heaven.'",0
  2379.     dc.b    "'Well go to hell then' said the",0
  2380.     dc.b    "priest. 'But be quiet about it.'",0,0
  2381.     
  2382. jke41:    dc.b    "A medical officer asked the sergeant",0
  2383.     dc.b    "in charge of a squad of Royal Irish",0
  2384.     dc.b    "Fusiliers what precautions he took",0
  2385.     dc.b    "against contaminated water.  'Well",0
  2386.     dc.b    "said the sergeant 'first of all we",0
  2387.     dc.b    "boil it and then we filter it sir.'",0
  2388.     dc.b    "The M.O. nodded his approval.  'And",0
  2389.     dc.b    "then for safety's sake we all drink",0
  2390.     dc.b    "beer.'",0,0
  2391.     
  2392. jke42:    dc.b    "An Irish Jeweller rang up the police",0
  2393.     dc.b    "in a terrible state. 'I've just been",0
  2394.     dc.b    "robbed by an elephant' he managed to",0
  2395.     dc.b    "blurt out.  'What sort?' asked the",0
  2396.     dc.b    "duty sergeant. 'An Indian elephant",0
  2397.     dc.b    "with short ears or an African",0
  2398.     dc.b    "elephant with big ears?'  'How should",0
  2399.     dc.b    "I know?' answered the Jeweller 'he",0
  2400.     dc.b    "had a stocking over his head.'",0,0
  2401.     
  2402. jke43:    dc.b    "An Irishman went to see a",0
  2403.     dc.b    "psychiatrist. 'Doctor' he said",0
  2404.     dc.b    "'can I ask you two questions?' 'Of",0
  2405.     dc.b    "course' said the psychiatrist.",0
  2406.     dc.b    "'Well is it possible for a man to",0
  2407.     dc.b    "fall in love with an elephant?'  'No",0
  2408.     dc.b    "it is not' replied the psychiatrist.",0
  2409.     dc.b    "'What's your next question?' 'Do you",0
  2410.     dc.b    "know anyone who needs a very large",0
  2411.     dc.b    "engagement ring?'",0,0
  2412.     
  2413. jke44:    dc.b    "Two Irishmen were partners in a",0
  2414.     dc.b    "jewellery shop and one day they were",0
  2415.     dc.b    "lunching together. 'Oh my goodness'",0
  2416.     dc.b    "said one 'we left the safe",0
  2417.     dc.b    "unlocked!' 'What are you worried",0
  2418.     dc.b    "about?' asked other. 'We're both",0
  2419.     dc.b    "here aren't we?'",0
  2420.     dc.b    " ",0
  2421.     dc.b    "The Irish navy asked for all the",0
  2422.     dc.b    "lighthouses to be turned upside down",0
  2423.     dc.b    "so that their submarines wouldn't get",0
  2424.     dc.b    "lost.",0,0
  2425.     
  2426. jke45:    dc.b    "An Irishman had for many years been",0
  2427.     dc.b    "carrying on an affair.  Finally his",0
  2428.     dc.b    "wife confronted him with the fact.",0
  2429.     dc.b    "'So what' he laughed.  'And do you",0
  2430.     dc.b    "know I have to meet the little",0
  2431.     dc.b    "darling this evening.  And do you",0
  2432.     dc.b    "know who is going to help me get",0
  2433.     dc.b    "dressed?  You are.  And do you know",0
  2434.     dc.b    "who is going to shine my shoes?  You",0
  2435.     dc.b    "are.  And do you know who is going to",0
  2436.     dc.b    "tie my tie?'",0
  2437.     dc.b    "'Yes' said his unfortunate wife.",0
  2438.     dc.b    "'The undertaker.'",0,0
  2439.     
  2440. jke46:    dc.b    "An Irishman was sitting in a pub",0
  2441.     dc.b    "wearing one blue sock and one red",0
  2442.     dc.b    "sock.  'That's a strange pair of",0
  2443.     dc.b    "socks you've got on' said a friend.",0
  2444.     dc.b    "'Yes it is' he replied.  'And do you",0
  2445.     dc.b    "know I've got another pair at home",0
  2446.     dc.b    "just like it.'",0
  2447.     dc.b    " ",0
  2448.     dc.b    "What is the first thing you learn",0
  2449.     dc.b    "from an Irish piano teacher?",0
  2450.     dc.b    "How to move the piano.",0,0
  2451.     
  2452. jke47:    dc.b    "One day an Irish housewife went",0
  2453.     dc.b    "crazy.  She broke up her kitchen",0
  2454.     dc.b    "completely and had to be taken away.",0
  2455.     dc.b    "Her husband was completely mystified:",0
  2456.     dc.b    "'She's always been such a decent",0
  2457.     dc.b    "hard-working woman' he told his",0
  2458.     dc.b    "friends in the pub. 'Why she hasn't",0
  2459.     dc.b    "been out of the kitchen in twenty",0
  2460.     dc.b    "years.'",0,0
  2461.     
  2462. jke48:    dc.b    "An old Irishman collapsed while",0
  2463.     dc.b    "crossing a busy Dublin street.",0
  2464.     dc.b    "Immediately he was surrounded by lots",0
  2465.     dc.b    "of people with all sorts of",0
  2466.     dc.b    "suggestions about how to revive him.",0
  2467.     dc.b    "One old lady said 'Give him some",0
  2468.     dc.b    "whiskey.' But she was completely",0
  2469.     dc.b    "ignored.  Finally the old boy opened",0
  2470.     dc.b    "his eyes and said 'Will you all shut",0
  2471.     dc.b    "up and listen to that sweet old lady",0
  2472.     dc.b    "over there.'",0,0
  2473.     
  2474. jke49:    dc.b    "A young Irish labourer emigrated to",0
  2475.     dc.b    "America.  While wandering around New",0
  2476.     dc.b    "York he found his way into a bar",0
  2477.     dc.b    "which had a big notice saying 'All",0
  2478.     dc.b    "the beer you can drink for $1.'",0
  2479.     dc.b    "Seeing this the Irishman said 'All",0
  2480.     dc.b    "right barman I'll take two dollar's",0
  2481.     dc.b    "worth of that.'",0
  2482.     dc.b    " ",0
  2483.     dc.b    "Why do haircuts cost £4 in Ireland?",0
  2484.     dc.b    "The charge is £1 per corner.",0,0
  2485.     
  2486. jke50:    dc.b    "A drunken Irishman noticed a man",0
  2487.     dc.b    "coming out of a supermarket with two",0
  2488.     dc.b    "heavy bags of shopping.  'Look at",0
  2489.     dc.b    "that!' he said to a passer-by. 'Going",0
  2490.     dc.b    "in there wasting his money.  I'm",0
  2491.     dc.b    "willing to bet he hasn't got a drop",0
  2492.     dc.b    "of booze in the house.'",0
  2493.     dc.b    " ",0
  2494.     dc.b    "An Irishman once moved after hearing",0
  2495.     dc.b    "that 90 per cent of road accidents",0
  2496.     dc.b    "occur within three miles of home.",0,0
  2497.     
  2498. jke51:    dc.b    "'Drinking doesn't affect me at all",0
  2499.     dc.b    "boasted a big tough Irishman.  'Take",0
  2500.     dc.b    "last night for instance I drank",0
  2501.     dc.b    "twenty pints of porter and sixteen",0
  2502.     dc.b    "whiskeys and I felt fine.  The only",0
  2503.     dc.b    "trouble was that people kept treading",0
  2504.     dc.b    "on my fingers.'",0
  2505.     dc.b    " ",0
  2506.     dc.b    "Teacher: What is an autobiography?",0
  2507.     dc.b    "Irish pupil: The story of a car?",0,0
  2508.     
  2509. jke52:    dc.b    "There was an advertisement for a man",0
  2510.     dc.b    "who was sober reliable and could",0
  2511.     dc.b    "drive.  Dutifully O'Reilly went off",0
  2512.     dc.b    "to apply.  The man asked him 'Can",0
  2513.     dc.b    "you drive?'",0
  2514.     dc.b    "'No' answered O'Reilly.  'Do you",0
  2515.     dc.b    "drink?' asked the man.  'Indeed I",0
  2516.     dc.b    "do' answered O'Reilly.  'Then why",0
  2517.     dc.b    "asked the man'did you answer the",0
  2518.     dc.b    "advertisement?'  'I just wanted to",0
  2519.     dc.b    "tell you that I'm not reliable",0
  2520.     dc.b    "answered O'Reilly.",0,0
  2521.     
  2522. jke53:    dc.b    "As the train left the platform three",0
  2523.     dc.b    "Irishmen went racing along the",0
  2524.     dc.b    "platform and two of them jumped on",0
  2525.     dc.b    "leaving their mate stranded laughing",0
  2526.     dc.b    "his head off.  'What are you laughing",0
  2527.     dc.b    "at?' asked one of the porters.",0
  2528.     dc.b    "'Those two' said the man. 'They came",0
  2529.     dc.b    "here to see me off.'",0
  2530.     dc.b    " ",0
  2531.     dc.b    "Mrs O'Reilly: Eamonn's teacher says",0
  2532.     dc.b    "he ought to have an encyclopedia.",0
  2533.     dc.b    "Mr O'Reilly: What for?  Let him walk",0
  2534.     dc.b    "to school like I had to.",0,0
  2535.     
  2536. jke54:    dc.b    "An Englishman was boasting about his",0
  2537.     dc.b    "scarecrows. 'They were so good this",0
  2538.     dc.b    "year that not a single bird came",0
  2539.     dc.b    "anywhere near our farm.' 'That's",0
  2540.     dc.b    "impressive' said an Irishman 'but",0
  2541.     dc.b    "ours were so good this year that the",0
  2542.     dc.b    "birds brought back the corn they",0
  2543.     dc.b    "stole last year.'",0,0
  2544.     
  2545. jke55:    dc.b    "A man with more than a touch of the",0
  2546.     dc.b    "blarney about him went into a",0
  2547.     dc.b    "restaurant and said to the waitress",0
  2548.     dc.b    "'A steak a salad and a kind word.'",0
  2549.     dc.b    "The waitress went away and a short",0
  2550.     dc.b    "while later returned with his order.",0
  2551.     dc.b    "'What about the kind word?' he asked.",0
  2552.     dc.b    "She bent down and whispered in his",0
  2553.     dc.b    "ear 'Don't eat the steak.'",0
  2554.     dc.b    " ",0
  2555.     dc.b    "Or about the pregnant Irish girl who",0
  2556.     dc.b    "hired two private detectives to find",0
  2557.     dc.b    "out if the baby was really hers?",0,0
  2558.     
  2559. jke56:    dc.b    "An Irishman noted for his tall",0
  2560.     dc.b    "tales was telling a tourist about",0
  2561.     dc.b    "how hot it had been the summer",0
  2562.     dc.b    "before. 'Why' he said 'I saw a fox",0
  2563.     dc.b    "being chased by the hounds one day",0
  2564.     dc.b    "and it was so hot they were walking.'",0
  2565.     dc.b    " ",0
  2566.     dc.b    "Did you hear about the Irish farmer",0
  2567.     dc.b    "who made all his cows sleep on their",0
  2568.     dc.b    "backs?",0
  2569.     dc.b    "He wanted the cream to be on top in",0
  2570.     dc.b    "the morning.",0,0
  2571.     
  2572. jke57:    dc.b    "What do you do if an Irishman throws",0
  2573.     dc.b    "a pin at you?",0
  2574.     dc.b    "Run like hell - he's probably got a",0
  2575.     dc.b    "grenade in his mouth.",0
  2576.     dc.b    " ",0
  2577.     dc.b    "What do you do if an Irishman throws",0
  2578.     dc.b    "a grenade at you?",0
  2579.     dc.b    "Take out the pin and throw it back.",0,0
  2580.     dc.b    " ",0
  2581.     dc.b    "How do you recognise an Irish pencil?",0
  2582.     dc.b    "It's got a rubber at both ends.",0,0
  2583.  
  2584. jke58:    dc.b    "Two Irish furniture removers once",0
  2585.     dc.b    "spent thirty minutes wrestling with a",0
  2586.     dc.b    "heavy wardrobe that was wedged on a",0
  2587.     dc.b    "landing.  'It's no good' said one",0
  2588.     dc.b    "'We'll never get it upstairs.'",0
  2589.     dc.b    "'Upstairs' said the other one 'I",0
  2590.     dc.b    "thought we were trying to get it",0
  2591.     dc.b    "downstairs.'",0
  2592.     dc.b    " ",0
  2593.     dc.b    "Did you hear about the Irish",0
  2594.     dc.b    "prostitute who was once found",0
  2595.     dc.b    "picketing the do-it-yourself show at",0
  2596.     dc.b    "Olympia?",0,0
  2597.     
  2598. jke59:    dc.b    "An old Irishman went from Dublin to",0
  2599.     dc.b    "the west coast for his health.  He",0
  2600.     dc.b    "hadn't been back two days when he",0
  2601.     dc.b    "died.  Two of his friends were",0
  2602.     dc.b    "looking at the open coffin.  'Doesn't",0
  2603.     dc.b    "he look wonderful?' said one of them.",0
  2604.     dc.b    "'He certainly does' said the other.",0
  2605.     dc.b    "'That month in the country must have",0
  2606.     dc.b    "done him the world of good.'",0,0
  2607.     
  2608. jke60:    dc.b    "Two Americans went into a bar in",0
  2609.     dc.b    "Dublin and asked for Guinness. 'Make",0
  2610.     dc.b    "sure the glass is clean' said one.",0
  2611.     dc.b    "The barman poured their drinks. 'Two",0
  2612.     dc.b    "pints' he announced after a while.",0
  2613.     dc.b    "'Who asked for the clean glass?'",0
  2614.     dc.b    " ",0
  2615.     dc.b    "Two Irishmen were walking down the",0
  2616.     dc.b    "road when they saw a human head on",0
  2617.     dc.b    "the pavement.  'Hey' said one 'that",0
  2618.     dc.b    "looks like O'Reilly.' 'No' said the",0
  2619.     dc.b    "other one. 'O'Reilly was much taller",0
  2620.     dc.b    "than that.'",0,0
  2621.     
  2622. jke61:    dc.b    "Two Irishmen were in a plane when the",0
  2623.     dc.b    "captain announced that one of the",0
  2624.     dc.b    "engines had conked out and the flight",0
  2625.     dc.b    "would be delayed a little although",0
  2626.     dc.b    "it was perfectly safe.  Two more",0
  2627.     dc.b    "times the captain made the same",0
  2628.     dc.b    "announcement and the third time one",0
  2629.     dc.b    "of the Irishmen said to the other",0
  2630.     dc.b    "'If that last engine goes we could",0
  2631.     dc.b    "be up here all night.'",0,0
  2632.     
  2633. jke62:    dc.b    "An Irishman showed up at his girl-",0
  2634.     dc.b    "friend's house with water dripping",0
  2635.     dc.b    "from his shirt. 'What's the matter?'",0
  2636.     dc.b    "she asked. 'Why is your shirt wet?'",0
  2637.     dc.b    "'Oh' said the Irishman 'It says on",0
  2638.     dc.b    "the label 'wash and wear'.'",0
  2639.     dc.b    " ",0
  2640.     dc.b    "An Irishman filled in a job",0
  2641.     dc.b    "application.  The personnel manager",0
  2642.     dc.b    "looked down the form and then said",0
  2643.     dc.b    "'I see your birthday is on March 17.",0
  2644.     dc.b    "What year?'",0
  2645.     dc.b    "'Oh every year' replied the Irishman.",0,0
  2646.     
  2647. jke63a:    dc.b    "A gorilla escaped from the zoo and",0
  2648.     dc.b    "adopted an Irishman who was minding",0
  2649.     dc.b    "his own business.  A policeman went",0
  2650.     dc.b    "over to the Irishman and asked him",0
  2651.     dc.b    "what was going on.  'I don't know",0
  2652.     dc.b    "said the Irishman.  'Well' said the",0
  2653.     dc.b    "policeman 'you'd better take that",0
  2654.     dc.b    "gorilla to the zoo.'  The Irishman",0
  2655.     dc.b    "nodded and walked off with the  >>>",0,0
  2656.     
  2657. jke63b:    dc.b    "gorilla holding his hand.  The next",0
  2658.     dc.b    "day the same policeman was astonished",0
  2659.     dc.b    "to see the Irishman and the gorilla",0
  2660.     dc.b    "walking along the road again.",0
  2661.     dc.b    "'Hey' said the policeman 'I thought",0
  2662.     dc.b    "I told you to take that gorilla to",0
  2663.     dc.b    "the zoo.' 'I did' said the Irishman",0
  2664.     dc.b    "'and he enjoyed it so much I'm going",0
  2665.     dc.b    "to take him again this afternoon.'",0,0
  2666.     
  2667. jke64:    dc.b    "Mrs O'Reilly went into her son's",0
  2668.     dc.b    "bedroom and said 'Come on it's",0
  2669.     dc.b    "7.30.  Time to go to school.' 'But I",0
  2670.     dc.b    "don't want to go to school.' 'Don't",0
  2671.     dc.b    "be silly dear.' 'But I really hate",0
  2672.     dc.b    "school mother.  The kids don't like",0
  2673.     dc.b    "me the teachers don't like me.  Even",0
  2674.     dc.b    "the janitor doesn't like me.' 'Come",0
  2675.     dc.b    "on get up' said Mrs O'Reilly, 'you've",0
  2676.     dc.b    "got to go - you're the headmaster.'",0,0
  2677.     
  2678. jke65:    dc.b    "Police now have undisputable proof",0
  2679.     dc.b    "that an Irish Mafia exist.  Some",0
  2680.     dc.b    "weeks ago two men were found with",0
  2681.     dc.b    "their heads tied together shot",0
  2682.     dc.b    "through the hands.",0
  2683.     dc.b    " ",0
  2684.     dc.b    "Priest: Do you want to go to Heaven?",0
  2685.     dc.b    "Irish Parishioner: No Father.",0
  2686.     dc.b    "Priest: But you must want to go to",0
  2687.     dc.b    "Heaven when you die.",0
  2688.     dc.b    "Irish Parishioner: Oh yes when I",0
  2689.     dc.b    "die Father.  I thought you were",0
  2690.     dc.b    "getting a party together now.",0,0
  2691.  
  2692. jke66:    dc.b    "An Irishman went to his doctor for",0
  2693.     dc.b    "advice on improving his sex life.",0
  2694.     dc.b    "After examining him the doctor",0
  2695.     dc.b    "recommended that he jog five miles",0
  2696.     dc.b    "every day for a week and then ring",0
  2697.     dc.b    "him.  A week later the Irishman",0
  2698.     dc.b    "telephoned.",0
  2699.     dc.b    "'Has the jogging improved your sex",0
  2700.     dc.b    "life?' asked the doctor.  'I'm not",0
  2701.     dc.b    "sure' said the Irishman 'I'm",0
  2702.     dc.b    "thirty-five miles from home.'",0,0
  2703.     
  2704. jke67:    dc.b    "Or about the pregnant Irish girl who",0
  2705.     dc.b    "hired two private detectives to find",0
  2706.     dc.b    "out if the baby was really hers?",0
  2707.     dc.b    " ",0
  2708.     dc.b    "One very hot day in June an Irish",0
  2709.     dc.b    "house painter was seen by his boss",0
  2710.     dc.b    "sweltering in two jackets.  'What",0
  2711.     dc.b    "have you got two jackets on for?' his",0
  2712.     dc.b    "boss asked.  'Oh' said the painter.",0
  2713.     dc.b    "'It says on the tin 'Put on two coats'.",0,0
  2714.     
  2715. jke68:    dc.b    "O'Reilly's mother went to see him one",0
  2716.     dc.b    "day looking like thunder.  'Why do",0
  2717.     dc.b    "you never call me on the telephone?'",0
  2718.     dc.b    "she demanded.  'Mother' said O'Reilly",0
  2719.     dc.b    "'you don't have a telephone!'  'I know",0
  2720.     dc.b    "that' she said.",0
  2721.     dc.b    "'But you do.'",0
  2722.     dc.b    " ",0
  2723.     dc.b    "Did you hear about the brand new",0
  2724.     dc.b    "parachute designed by an Irishman?",0
  2725.     dc.b    "It opens on impact.",0,0
  2726.     
  2727. jke69:    dc.b    "A shaky Irish barber once managed to",0
  2728.     dc.b    "cut a man three times while shaving",0
  2729.     dc.b    "him.  The third time the man asked",0
  2730.     dc.b    "for a razor. 'What for?' asked the",0
  2731.     dc.b    "barber. 'Do you want to shave",0
  2732.     dc.b    "yourself?'  'No' answered the man",0
  2733.     dc.b    "'I want to defend myself.'",0
  2734.     dc.b    " ",0    
  2735.     dc.b    "'I never worry about my wife going",0
  2736.     dc.b    "off with other fellows' bragged",0
  2737.     dc.b    "O'Reilly. 'She's a wonderful kind",0
  2738.     dc.b    "considerate woman.  And very ugly.'",0,0
  2739.  
  2740. jke70:    dc.b    "O'Reilly went to see the parish",0
  2741.     dc.b    "priest. 'Father' he said 'before I",0
  2742.     dc.b    "die I'd like to convert to",0
  2743.     dc.b    "Protestantism.'  'Why on earth do you",0
  2744.     dc.b    "want to do that?' asked the",0
  2745.     dc.b    "astonished priest.  'Well surely you",0
  2746.     dc.b    "don't want to lose a good Catholic",0
  2747.     dc.b    "when I die do you?' said O'Reilly.",0
  2748.     dc.b    " ",0
  2749.     dc.b    "The newly married Irish girl",0
  2750.     dc.b    "wrote off to the army for all her",0
  2751.     dc.b    "husband's favourite recipes!",0,0
  2752.     
  2753. jke71:    dc.b    "Did you hear about the Irish girl who",0
  2754.     dc.b    "believed in long engagements?",0
  2755.     dc.b    "She was pregnant six months before",0
  2756.     dc.b    "she got married.",0
  2757.     dc.b    " ",0
  2758.     dc.b    "Or the Irish farmer who gave his",0
  2759.     dc.b    "sheep iron pills so that he would get",0
  2760.     dc.b    "steel wool?",0,0
  2761.     dc.b    "Or even about the Irish ventriloquist",0
  2762.     dc.b    "who was so dim that finally his dummy",0
  2763.     dc.b    "left him?",0,0
  2764.     
  2765. jke72:    dc.b    "A giant of a man walked into a Dublin",0
  2766.     dc.b    "bar with a tiger on a lead.  He",0
  2767.     dc.b    "looked fiercely round the bar and",0
  2768.     dc.b    "then yelled at the barman 'Do you",0
  2769.     dc.b    "serve Englishmen in here?'  'Of",0
  2770.     dc.b    "course sir' said the barman.",0
  2771.     dc.b    "'Good' said the man 'I'll",0
  2772.     dc.b    "have two for the tiger.'",0
  2773.     dc.b    " ",0    
  2774.     dc.b    "There was once an Irishman with a",0
  2775.     dc.b    "terrible inferiority complex.  He",0
  2776.     dc.b    "thought everybody else was as good as",0
  2777.     dc.b    "he was.",0,0
  2778.     
  2779. jke73:    dc.b    "An Irishman walked into a bar with a",0
  2780.     dc.b    "pig under his arm.  'Where on earth",0
  2781.     dc.b    "did you get that?' asked the barman.",0
  2782.     dc.b    "'I won him in a raffle' said the",0
  2783.     dc.b    "pig.",0
  2784.     dc.b    " ",0
  2785.     dc.b    "An Irish mountaineering expedition",0
  2786.     dc.b    "was unsuccessful in its assault on",0
  2787.     dc.b    "Everest.  It ran out of scaffolding",0
  2788.     dc.b    "just a few feet short of the summit.",0,0
  2789.  
  2790. jke74:    dc.b    "A young Irish girl was hired as a",0
  2791.     dc.b    "secretary and on the first day the",0
  2792.     dc.b    "phone rang.  She answered it and hung",0
  2793.     dc.b    "up almost immediately.  This happened",0
  2794.     dc.b    "three or four times and finally her",0
  2795.     dc.b    "boss asked her who was ring.  'Oh",0
  2796.     dc.b    "she said pertinently 'some fool who",0
  2797.     dc.b    "keeps telling me it's a long distance",0
  2798.     dc.b    "from New York.'",0,0
  2799.  
  2800. jke75:    dc.b    "Two Irishmen each had a horse but",0
  2801.     dc.b    "they had great difficulty in telling",0
  2802.     dc.b    "them apart so one of them docked his",0
  2803.     dc.b    "horse's tail.  Everything was great",0
  2804.     dc.b    "but then the second horse had a nasty",0
  2805.     dc.b    "accident & he lost his tail.  And the",0
  2806.     dc.b    "two men found themselves back at",0
  2807.     dc.b    "square one.  They decided to consult",0
  2808.     dc.b    "a famous professor to see if he could",0
  2809.     dc.b    "help them. He looked at the 2 horses",0
  2810.     dc.b    "and said 'It's really very easy that",0
  2811.     dc.b    "bay mare is about half a hand bigger",0
  2812.     dc.b    "than that grey stallion.'",0,0
  2813.     
  2814. jke76:    dc.b    "A man went into a barber's shop",0
  2815.     dc.b    "with a small boy.  After the man",0
  2816.     dc.b    "had a haircut, shampoo & shave he",0
  2817.     dc.b    "placed the boy in the chair.  'I'm",0
  2818.     dc.b    "just going to buy a bottle' he said",0
  2819.     dc.b    "'I'll be back in a minute.'  The boy",0
  2820.     dc.b    "had his haircut & the man hadn't",0
  2821.     dc.b    "returned.  'Your daddy's forgotten",0
  2822.     dc.b    "about you' the barber said to the",0
  2823.     dc.b    "boy.  'Oh that wasn't my dad' said",0
  2824.     dc.b    "the boy.  'He just walked up to me",0
  2825.     dc.b    "outside and said 'Come on son",0
  2826.     dc.b    "let's go and have a free haircut.'",0,0
  2827.     
  2828. jke77:    dc.b    "A woman had stalled her car at a set",0
  2829.     dc.b    "of traffic lights in Dublin.  The",0
  2830.     dc.b    "lights kept changing... Red...",0
  2831.     dc.b    "Amber... Green... Finally a policeman",0
  2832.     dc.b    "came up to her and leant nonchalantly",0
  2833.     dc.b    "into the car 'What's the matter",0
  2834.     dc.b    "lady?' he asked. 'Haven't we got a",0
  2835.     dc.b    "colour you like?'",0
  2836.     dc.b    " ",0
  2837.     dc.b    "Why do Irish dogs have flat faces?",0
  2838.     dc.b    "from chasing parked cars.",0,0
  2839.     
  2840. jke78:    dc.b    "Two Irishmen were having a fierce",0
  2841.     dc.b    "argument about whether or not the",0
  2842.     dc.b    "English have a sense of humour.  One",0
  2843.     dc.b    "of them ended the dispute once and",0
  2844.     dc.b    "for all when he said 'The English",0
  2845.     dc.b    "have a tremendous sense of humour:",0
  2846.     dc.b    "they laugh three times at every joke:",0
  2847.     dc.b    "once when they hear it once when",0
  2848.     dc.b    "it's explained to them and once when",0
  2849.     dc.b    "they understand it.'",0,0
  2850.     
  2851. jke79:    dc.b    "A priest went to see O'Reilly in",0
  2852.     dc.b    "hospital. 'I'm going to pray' he",0
  2853.     dc.b    "said 'that you'll forgive McCann",0
  2854.     dc.b    "for hitting you with that bottle.'",0
  2855.     dc.b    "'There's no need to waste your time",0
  2856.     dc.b    "Father.  Wait till I get better",0
  2857.     dc.b    "and then pray for McCann.'",0
  2858.     dc.b    " ",0
  2859.     dc.b    "Two Irishmen hijacked a submarine.",0
  2860.     dc.b    "They demanded a million dollars",0
  2861.     dc.b    "ransom and two parachutes.",0,0
  2862.     
  2863. jke80:    dc.b    "Paddy was on his death bed about to",0
  2864.     dc.b    "breathe his last when he smelt some",0
  2865.     dc.b    "of his wife's cooking.  He beckoned",0
  2866.     dc.b    "weakly to his son and told him to ask",0
  2867.     dc.b    "the good lady for a plate of her",0
  2868.     dc.b    "delicious ham so he could die a happy",0
  2869.     dc.b    "man.  The boy raced off and returned",0
  2870.     dc.b    "a few seconds later and said 'Ma",0
  2871.     dc.b    "says to tell you not to be so silly",0
  2872.     dc.b    "she's saving the ham for the wake.'",0,0
  2873.     
  2874. jke81:    dc.b    "The American tourist was bragging in",0
  2875.     dc.b    "Dublin bar about American technology.",0
  2876.     dc.b    "'Who is it that put a man on the",0
  2877.     dc.b    "moon?' he asked.  'That's not so",0
  2878.     dc.b    "great' said the barman. 'We Irish",0
  2879.     dc.b    "are planning to put a man on the",0
  2880.     dc.b    "sun.'  'You can't do that.  He'll be",0
  2881.     dc.b    "frazzled to a crisp before he's",0
  2882.     dc.b    "anywhere near the sun' said the",0
  2883.     dc.b    "American.  'Oh no' said the barman.",0
  2884.     dc.b    "'We'll be sending him at night.'",0,0
  2885.     
  2886. jke82:    dc.b    "A man was in tears at Lime Street",0
  2887.     dc.b    "Station in Liverpool.  A woman asked",0
  2888.     dc.b    "him what was the matter.  'I've just",0
  2889.     dc.b    "come over from Ireland ' he sobbed",0
  2890.     dc.b    "'and I've lost all me luggage.'",0
  2891.     dc.b    "'That's terrible' said the woman.",0
  2892.     dc.b    "'What happened?'  'Oh' he said. 'The",0
  2893.     dc.b    "cork came out.'",0
  2894.     dc.b    " ",0
  2895.     dc.b    "How do you recognise an Irish hippy?",0
  2896.     dc.b    "Flared Wellingtons.",0,0
  2897.     
  2898. jke83:    dc.b    "An Irishman was very worried about",0
  2899.     dc.b    "his wife and so he went to see a",0
  2900.     dc.b    "psychiatrist about her. 'She's got",0
  2901.     dc.b    "this terrible fear of having her",0
  2902.     dc.b    "clothes stolen' he said.  'Why",0
  2903.     dc.b    "only the other day I got home early",0
  2904.     dc.b    "and found that she'd hired a man to",0
  2905.     dc.b    "stay in the wardrobe to guard them.'",0
  2906.     dc.b    " ",0
  2907.     dc.b    "Did you hear about the Irishman who",0
  2908.     dc.b    "called his pet zebra 'Spot'?",0,0
  2909.     
  2910. jke84:    dc.b    "O'Reilly was arrested for murder but",0
  2911.     dc.b    "bribed a member of the jury to hold",0
  2912.     dc.b    "out for manslaughter.  The jury was",0
  2913.     dc.b    "out for eight hours but when it",0
  2914.     dc.b    "returned the verdict was",0
  2915.     dc.b    "manslaughter.  O'Reilly smiled at the",0
  2916.     dc.b    "man he'd bribed and whispered 'I'm",0
  2917.     dc.b    "really grateful I hope it wasn't too",0
  2918.     dc.b    "difficult.'  'It was touch and go",0
  2919.     dc.b    "said the man 'The others all wanted",0
  2920.     dc.b    "to acquit you.'",0,0
  2921.     
  2922. jke85:    dc.b    "A young lad up from the country spent",0
  2923.     dc.b    "a day in Dublin and on his return",0
  2924.     dc.b    "regaled his friends in the pub with",0
  2925.     dc.b    "tales of derring-do.  'Why it's a",0
  2926.     dc.b    "great city ' he said. 'Do you know",0
  2927.     dc.b    "I'd not been there an hour when I was",0
  2928.     dc.b    "befriended by this charming lady who",0
  2929.     dc.b    "took me back to her apartment.  As",0
  2930.     dc.b    "soon as we got there do you know",0
  2931.     dc.b    "she took off all her clothes.  Why I",0
  2932.     dc.b    "think if I'd played my cards right",0
  2933.     dc.b    " I could've kissed her'.",0,0
  2934.     
  2935. jke86:    dc.b    "A man walked into a pub in London and",0
  2936.     dc.b    "asked the barman if he'd heard the",0
  2937.     dc.b    "latest Irish joke.  'I'd better be",0
  2938.     dc.b    "warning you' said the barman 'I'm",0
  2939.     dc.b    "Irish meself.'  'That's O.K.'",0
  2940.     dc.b    "said he man 'I'll tell it slowly.'",0
  2941.     dc.b    " ",0
  2942.     dc.b    "An Irishman looked up from his",0
  2943.     dc.b    "newspaper and said to his wife 'I'll",0
  2944.     dc.b    "never understand how it is that",0
  2945.     dc.b    "people die in alphabetical order.'",0,0
  2946.     
  2947. jke87:    dc.b    "The doctor had finished his",0
  2948.     dc.b    "examination of the strapping Irish",0
  2949.     dc.b    "navvy and said 'Well there's",0
  2950.     dc.b    "nothing seriously wrong with you",0
  2951.     dc.b    "but you ought to give up drinking",0
  2952.     dc.b    "the hard stuff and try to drink at",0
  2953.     dc.b    "least one pint of milk a day.'  'But",0
  2954.     dc.b    "Doctor' said the navvy'milk's",0
  2955.     dc.b    "awfully dangerous stuff.  Why a",0
  2956.     dc.b    "friend of mine was killed by drinking",0
  2957.     dc.b    "milk.'",0
  2958.     dc.b    "'How on earth did that happen?' asked",0
  2959.     dc.b    "the doctor.  'Well the cow fell on him.'",0,0
  2960.     
  2961. jke88:    dc.b    "Two Irishmen were working on a",0
  2962.     dc.b    "building site when a large chunk of",0
  2963.     dc.b    "steel fell on one's head and cut off",0
  2964.     dc.b    "his ear.  'Don't worry Joe' said",0
  2965.     dc.b    "the other 'I'll search among the",0
  2966.     dc.b    "rubble and find it and the surgeon",0
  2967.     dc.b    "can sew it back on again.'  After",0
  2968.     dc.b    "about five minutes he found the ear",0
  2969.     dc.b    "and brought it back triumphantly.",0
  2970.     dc.b    "'You fool' Joe shouted 'that's not",0
  2971.     dc.b    "my ear.  Mine had a cigarette behind",0
  2972.     dc.b    "it.'",0,0
  2973.     
  2974. jke89:    dc.b    "O'Reilly had too much drink and he",0
  2975.     dc.b    "accidentally broke a shop window.",0
  2976.     dc.b    "He saw what he had done he sobered up",0
  2977.     dc.b    "a bit and started to run for all his",0
  2978.     dc.b    "worth.  Unfortunately a policeman saw",0
  2979.     dc.b    "him and gave chase and finally",0
  2980.     dc.b    "caught up with him.  'Now' he said",0
  2981.     dc.b    "'You're not going to get away with",0
  2982.     dc.b    "that.  I saw you breaking the window",0
  2983.     dc.b    "and then running away.'  'I wasn't",0
  2984.     dc.b    "running away sir' said O'Reilly. 'I",0
  2985.     dc.b    "was only running home to get the",0
  2986.     dc.b    "price of it to repay the owner.'",0,0
  2987.     
  2988. jke90:    dc.b    "A fire broke out in Paddy's bedroom",0
  2989.     dc.b    "and the insurance people hesitated to",0
  2990.     dc.b    "pay up as they had reason to believe",0
  2991.     dc.b    "that Paddy was drunk and carelessly",0
  2992.     dc.b    "smoking thereby setting fire to the",0
  2993.     dc.b    "bed himself.  Paddy answered their",0
  2994.     dc.b    "charge by swearing that he was as",0
  2995.     dc.b    "sober as a judge and that the bed was",0
  2996.     dc.b    "actually on fire when he got into it!",0,0
  2997.     
  2998. jke91:    dc.b    "Then there was the Irish boy who was",0
  2999.     dc.b    "asked at school how he would divide",0
  3000.     dc.b    "twenty potatoes among six people.  He",0
  3001.     dc.b    "said he'd boil them and mash them.",0
  3002.     dc.b    " ",0
  3003.     dc.b    "An Irish couple began to learn",0
  3004.     dc.b    "Swahili because they had just adopted",0
  3005.     dc.b    "a black baby boy and they wanted to",0
  3006.     dc.b    "be able to understand him when he",0
  3007.     dc.b    "started to speak.",0,0
  3008.     
  3009. jke92:    dc.b    "Irishman to shoemaker: 'You stupid",0
  3010.     dc.b    "fool.  I told you to make one shoe",0
  3011.     dc.b    "bigger than the other and instead you",0
  3012.     dc.b    "have made one smaller the other.'",0
  3013.     dc.b    " ",0
  3014.     dc.b    "'How far is it to the hotel?' asked",0
  3015.     dc.b    "an English tourist.  'It's about a",0
  3016.     dc.b    "fifteen-minute walk' answered an",0
  3017.     dc.b    "Irish local 'if you run like hell.'",0,0
  3018.  
  3019. jke93:    dc.b    "American tourist: Our farms are so",0
  3020.     dc.b    "big that if you started to plough a",0
  3021.     dc.b    "furrow in spring by the time you had",0
  3022.     dc.b    "got to the end of it you could",0
  3023.     dc.b    "harvest the crop on the way back.",0
  3024.     dc.b    "Irishman: That's nothing.  In Ireland",0
  3025.     dc.b    "if a young married couple went out to",0
  3026.     dc.b    "milk the cows the children would",0
  3027.     dc.b    "bring back the milk.",0,0
  3028.  
  3029. jke94:    dc.b    "There was the Irishman who was always",0
  3030.     dc.b    "boasting how happily married he was.",0
  3031.     dc.b    "He told everyone the secret of his",0
  3032.     dc.b    "marriage was that his wife made all",0
  3033.     dc.b    "the minor decisions while she",0
  3034.     dc.b    "allowed him to make all the major",0
  3035.     dc.b    "ones.  'What decisions for example",0
  3036.     dc.b    "do you make?' asked a cowed listener.",0
  3037.     dc.b    "'Oh I decide on how to solve the",0
  3038.     dc.b    "problem of the North; whether to give",0
  3039.     dc.b    "Rhodesia back to the blacks whether",0
  3040.     dc.b    "we should leave the Common Market",0
  3041.     dc.b    "and such like important problems.'",0,0
  3042.     
  3043. jke95:    dc.b    "Two men were sitting on a wall",0
  3044.     dc.b    "outside the mental home in Dublin.",0
  3045.     dc.b    "One had a long piece of stick that he",0
  3046.     dc.b    "was casting towards the middle of the",0
  3047.     dc.b    "road and reeling in as if he were",0
  3048.     dc.b    "fishing.  A passing policeman looked",0
  3049.     dc.b    "at him for a while and then went over",0
  3050.     dc.b    "to the other man and said: 'Is that",0
  3051.     dc.b    "fellow out of the mental home?'  'Oh",0
  3052.     dc.b    "he is' answered the other.  'Well",0
  3053.     dc.b    "take him back there as quickly as you",0
  3054.     dc.b    "can.'  'O.K. Hey Jack reel in and",0
  3055.     dc.b    "I'll row home.'",0,0
  3056.     
  3057. jke96:    dc.b    "Then there was the Irishman who heard",0
  3058.     dc.b    "an hilarious story but wouldn't bring",0
  3059.     dc.b    "it home since he thought that would",0
  3060.     dc.b    "be carrying the joke too far.",0
  3061.     dc.b    " ",0
  3062.     dc.b    "An Irishman was once asked why they",0
  3063.     dc.b    "built the railway station two miles",0
  3064.     dc.b    "from the town.  He answered: 'Well",0
  3065.     dc.b    "they thought it would be a good to",0
  3066.     dc.b    "have the station near the railway.'",0,0
  3067.  
  3068. jke97:    dc.b    "An Irishman was working on a building",0
  3069.     dc.b    "site and one week he got £2 too much",0
  3070.     dc.b    "in his wages.  He kept very quite",0
  3071.     dc.b    "about it.  In the meantime the error",0
  3072.     dc.b    "was noticed and £2 was deducted from",0
  3073.     dc.b    "his wages the next week.  He went up",0
  3074.     dc.b    "to the cashier & complained angrily.",0
  3075.     dc.b    "'You didn't complain too much last",0
  3076.     dc.b    "week when you got £2 too much' said",0
  3077.     dc.b    "the cashier.  'Once is one thing",0
  3078.     dc.b    "said the Irishman' but when a",0
  3079.     dc.b    "mistake happens twice a man has a",0
  3080.     dc.b    "right to complain.'",0,0
  3081.     
  3082. jke98:    dc.b    "An Irish farmer was on holiday in",0
  3083.     dc.b    "Dublin.  He complained to the bell-",0
  3084.     dc.b    "boy:  'I'm not going to have this",0
  3085.     dc.b    "room.  You couldn't swing a cat in",0
  3086.     dc.b    "it.  It's no better than a pigsty and",0
  3087.     dc.b    "I'm not going to sleep in a miserable",0
  3088.     dc.b    "folding bed.  Don't think that",0
  3089.     dc.b    "because I'm from the country you can",0
  3090.     dc.b    "fool me.'  'Get in sir' said the boy",0
  3091.     dc.b    "'this is the lift.'",0,0
  3092.     
  3093. jke99:    dc.b    "Judge: 'Speeding again? How many",0
  3094.     dc.b    "times have you been before me?'",0
  3095.     dc.b    "Irish Defendant: 'Never your",0
  3096.     dc.b    "Worship.  I tried to pass you on the",0
  3097.     dc.b    "road twice but my car will only do",0
  3098.     dc.b    "sixty-five.'",0
  3099.     dc.b    " ",0
  3100.     dc.b    "Then there was the Irishman who sent",0
  3101.     dc.b    "a cheque for £50 to his aunt as a",0
  3102.     dc.b    "birthday gift but he didn't sign it",0
  3103.     dc.b    "as he didn't want her to know who",0
  3104.     dc.b    "sent it.",0,0
  3105.  
  3106. jke100:    dc.b    "An Irish farmer went on his honeymoon",0
  3107.     dc.b    "to London and was angered to find",0
  3108.     dc.b    "twin beds in the hotel room.  'What's",0
  3109.     dc.b    "upsetting you?' asked the shy bride.",0
  3110.     dc.b    "'I thought we were going to have a",0
  3111.     dc.b    "room to ourselves' answered the",0
  3112.     dc.b    "farmer.",0
  3113.     dc.b    " ",0
  3114.     dc.b    "Then there was the Irishman whose car",0
  3115.     dc.b    "was painted green on one side and",0
  3116.     dc.b    "grey on the other.  He loves to hear",0
  3117.     dc.b    "witnesses contend with each other.",0,0
  3118.     
  3119. jke101:    dc.b    "Irishman to St Peter at the Golden",0
  3120.     dc.b    "Gates: 'You must be bored with your",0
  3121.     dc.b    "job showing people in year after",0
  3122.     dc.b    "year century after century?'",0
  3123.     dc.b    "St Peter: 'You must remember here",0
  3124.     dc.b    "in Heaven things are measured",0
  3125.     dc.b    "differently.  A million years are but",0
  3126.     dc.b    "as on minute; a million pounds are",0
  3127.     dc.b    "but one shilling.'",0
  3128.     dc.b    "Irishman: 'Could you loan me a",0
  3129.     dc.b    "shilling Holy Saint?'",0
  3130.     dc.b    "St Peter: 'Certainly - in a minute!'",0,0
  3131.     
  3132. jke102:    dc.b    "Old man a bit bewildered at a very",0
  3133.     dc.b    "fashionable wedding: 'Are you the",0
  3134.     dc.b    "bridegroom?'",0
  3135.     dc.b    "Irishman: 'No sir I was knocked out",0
  3136.     dc.b    "in the semifinals.'",0
  3137.     dc.b    " ",0
  3138.     dc.b    "Waiter to Irishman: 'Will you have",0
  3139.     dc.b    "red or white wine sir?'",0
  3140.     dc.b    "Irishman: 'It's all the same to me.",0
  3141.     dc.b    "I'm colour blind.'",0,0
  3142.     
  3143. jke103:    dc.b    "An Irishman was riding his bicycle",0
  3144.     dc.b    "with no lights and was stopped by a",0
  3145.     dc.b    "policeman.  'What's your name?' asked",0
  3146.     dc.b    "the policeman.  'John Smith.' 'That",0
  3147.     dc.b    "can't be your name.  Give me your",0
  3148.     dc.b    "real name.' 'Well' said the",0
  3149.     dc.b    "Irishman 'you can put me down as",0
  3150.     dc.b    "William Shakespeare.' 'That's",0
  3151.     dc.b    "better' said the policeman. 'You",0
  3152.     dc.b    "can't fool me with the 'Smith'",0
  3153.     dc.b    "nonsense.'",0,0
  3154.     
  3155. jke104:    dc.b    "Boss: 'You've already had time off",0
  3156.     dc.b    "for your mother-in-law's funeral",0
  3157.     dc.b    "for you're child's measles for your",0
  3158.     dc.b    "son's first communion.  What is it",0
  3159.     dc.b    "now?'",0
  3160.     dc.b    "Irishman: 'I'm getting married sir.'",0,0
  3161.     dc.b    " ",0
  3162.     dc.b    "There was the Irish woman who fell",0
  3163.     dc.b    "overboard in shark-infested waters.",0
  3164.     dc.b    "The sharks didn't touch her because",0
  3165.     dc.b    "they were 'man-eating'.",0,0
  3166.     
  3167. jke105:    dc.b    "Then there was the Irishman who used",0
  3168.     dc.b    "to snore so loud that he'd wake",0
  3169.     dc.b    "himself up.  But he cured himself.",0
  3170.     dc.b    "He sleeps in the next room now.",0
  3171.     dc.b    " ",0
  3172.     dc.b    "An Irishman was given a pair of water",0
  3173.     dc.b    "skis for his birthday by his wife.",0
  3174.     dc.b    "Some months later when he still",0
  3175.     dc.b    "hadn't used them she asked him why",0
  3176.     dc.b    "not and he told her that he couldn't",0
  3177.     dc.b    "find a lake with a slope.",0,0
  3178.     
  3179. jke106:    dc.b    "You can always tell an Irishman on an",0
  3180.     dc.b    "oil rig.  He's the one throwing bread",0
  3181.     dc.b    "to the helicopters.",0
  3182.     dc.b    " ",0
  3183.     dc.b    "The police in Dublin uncovered a very",0
  3184.     dc.b    "large-scale fraud.  It seems that a",0
  3185.     dc.b    "group of Dubliners had forged",0
  3186.     dc.b    "thousands of pounds of 10p pieces by",0
  3187.     dc.b    "cutting off the corners off 50p",0
  3188.     dc.b    "pieces.",0,0
  3189.     
  3190. jke107:    dc.b    "Two Irishmen were sent to gaol and",0
  3191.     dc.b    "were given the same cell.  One of",0
  3192.     dc.b    "them asked the other how long he was",0
  3193.     dc.b    "in for and was told 'Eight years.'",0
  3194.     dc.b    "'Oh he said. 'Well you'd better",0
  3195.     dc.b    "take the bed by the door.  I'm in for",0
  3196.     dc.b    "ten so you'll be leaving before me.'",0
  3197.     dc.b    " ",0
  3198.     dc.b    "There was an Irishman who thought",0
  3199.     dc.b    "that aperitif was French for a set of",0
  3200.     dc.b    "dentures.",0,0
  3201.     
  3202. jke108:    dc.b    "A very rich Texan was sitting in a",0
  3203.     dc.b    "bar in Dublin and as he got drunker",0
  3204.     dc.b    "so he got louder and more boastful",0
  3205.     dc.b    "about his home state. 'In Texas' he",0
  3206.     dc.b    "drawled 'a man can get on a train",0
  3207.     dc.b    "on Monday morning eat & sleep on that",0
  3208.     dc.b    "train all through Monday and all",0
  3209.     dc.b    "through Tuesday.  And when he gets",0
  3210.     dc.b    "off that train on Wednesday he's",0
  3211.     dc.b    "still in Texas.'",0
  3212.     dc.b    "The barman looked up and shook his",0
  3213.     dc.b    "head 'Sure it's terrible' he said.",0
  3214.     dc.b    "'We've got slow trains in Ireland too.'",0,0
  3215.     
  3216. jke109a:dc.b    "After O'Reilly had jumped a red light",0
  3217.     dc.b    "and smashed into another car he",0
  3218.     dc.b    "dashed over to the other vehicle to",0
  3219.     dc.b    "discover that the driver was a priest",0
  3220.     dc.b    "'Good God man you almost killed me'",0
  3221.     dc.b    "said the badly shaken priest.",0
  3222.     dc.b    "'I'm really sorry Father'",0
  3223.     dc.b    "said O'Reilly taking a bottle",0
  3224.     dc.b    "from his pocket 'Drink some of this",0
  3225.     dc.b    "whiskey for your nerves.'  The",0
  3226.     dc.b    "grateful priest gulped down some  >>>",0,0
  3227.     
  3228. jke109b:dc.b    "whiskey and then started shouting",0
  3229.     dc.b    "again. 'What do you think you were",0
  3230.     dc.b    "doing?  I'm lucky to be alive.' 'Oh",0
  3231.     dc.b    "Father I'm so sorry.  You'll feel a",0
  3232.     dc.b    "lot better after you've drunk some",0
  3233.     dc.b    "more of this.'  The priest had a few",0
  3234.     dc.b    "more stiff belts and then asked",0
  3235.     dc.b    "'Why don't you have a drink?' 'I don't",0
  3236.     dc.b    "think I will thank you Father",0
  3237.     dc.b    "said O'Reilly. 'I'll just sit here",0
  3238.     dc.b    "and wait for the police.'",0,0
  3239.     
  3240. jke110a:dc.b    "It was Sunday and there was an",0
  3241.     dc.b    "expectant hush in the church as the",0
  3242.     dc.b    "priest mounted the steps of the",0
  3243.     dc.b    "pulpit.  He looked sadly down at his",0
  3244.     dc.b    "flock and then said 'Today I'm",0
  3245.     dc.b    "going to demonstrate the evils of the",0
  3246.     dc.b    "demon drink.'  He then placed two",0
  3247.     dc.b    "glasses on the pulpit and then pulled",0
  3248.     dc.b    "a worm out of his pocket. 'In the",0
  3249.     dc.b    "first glass is water' he said and",0
  3250.     dc.b    "dangled the worm in the glass.  He",0
  3251.     dc.b    "then took the worm out of the glass",0
  3252.     dc.b    "and said triumphantly 'The worm is >>>",0,0
  3253.     
  3254. jke110b:dc.b    "still alive.'  He paused and then",0
  3255.     dc.b    "continued 'In the second glass",0
  3256.     dc.b    "whiskey ' and placed the worm in",0
  3257.     dc.b    "that.  After a few seconds he took",0
  3258.     dc.b    "the worm out of the whiskey and said",0
  3259.     dc.b    "'The worm is dead.'  He paused again",0
  3260.     dc.b    "and then said in a tired voice  'Now",0
  3261.     dc.b    "what is it I'm trying to tell you?'",0
  3262.     dc.b    "A little fellow at the back of the",0
  3263.     dc.b    "church got up and said 'If you",0
  3264.     dc.b    "please Father you're trying to tell",0
  3265.     dc.b    "us that if you drink whiskey you",0
  3266.     dc.b    "won't get worms.'",0,0
  3267.     
  3268. jke111:    dc.b    "An Irishman rushed into a police",0
  3269.     dc.b    "station and told the duty sergeant",0
  3270.     dc.b    "that his car had been stolen.  'Did",0
  3271.     dc.b    "you get a look at the thief?' the",0
  3272.     dc.b    "sergeant asked.",0
  3273.     dc.b    "'No' said the Irishman 'but I got",0
  3274.     dc.b    "his number.'",0
  3275.     dc.b    " ",0
  3276.     dc.b    "Have you heard about the Irishman who",0
  3277.     dc.b    "sold a £10 parking ticket to a Scot.",0
  3278.     dc.b    "for £5?",0,0
  3279.     
  3280. jke112:    dc.b    "A little Irish village had just",0
  3281.     dc.b    "bought a new fire engine and the",0
  3282.     dc.b    "local councillors were wondering what",0
  3283.     dc.b    "to do with the old one.  'Why not",0
  3284.     dc.b    "keep the old fire engine for false",0
  3285.     dc.b    "alarms?' asked one old councillor.",0
  3286.     dc.b    " ",0
  3287.     dc.b    "How do you recognise an Irish racing",0
  3288.     dc.b    "driver in a big race?",0
  3289.     dc.b    "He makes a hundred pit stops.  Three",0
  3290.     dc.b    "for fuel four for tyre changes and",0
  3291.     dc.b    "ninety-three to ask for directions.",0,0
  3292.     
  3293. jke113:    dc.b    "An Irishman read about experiments",0
  3294.     dc.b    "showing that tar and nicotine in",0
  3295.     dc.b    "cigarettes caused cancer in rats and",0
  3296.     dc.b    "mice.  Deeply moved he put all his",0
  3297.     dc.b    "cigarettes on the top shelf where the",0
  3298.     dc.b    "rats and mice couldn't get at them.",0
  3299.     dc.b    " ",0
  3300.     dc.b    "An Irishman went to America where he",0
  3301.     dc.b    "became a policeman.  One night he",0
  3302.     dc.b    "handed out a hundred and seventy-",0
  3303.     dc.b    "three parking tickets before he",0
  3304.     dc.b    "realized that he was in a drive-in",0
  3305.     dc.b    "movie.",0,0
  3306.     
  3307. jke114:    dc.b    "How do you recognise a well-mannered",0
  3308.     dc.b    "Irishman?",0
  3309.     dc.b    "He doesn't blow his soup - he fans it",0
  3310.     dc.b    "with his cap.",0
  3311.     dc.b    " ",0
  3312.     dc.b    "Have you heard about the Irishman who",0
  3313.     dc.b    "went to a mind reader?",0
  3314.     dc.b    "He got his money back.",0
  3315.     dc.b    " ",0
  3316.     dc.b    "What about the Irish grandmother who",0
  3317.     dc.b    "went on the pill?",0
  3318.     dc.b    "She didn't want to have any more",0
  3319.     dc.b    "grandchildren.",0,0
  3320.     
  3321. jke115:    dc.b    "Have you heard about the Irishmen who",0
  3322.     dc.b    "thought that manual labour was a",0
  3323.     dc.b    "Spanish trade union official?",0
  3324.     dc.b    " ",0
  3325.     dc.b    "Then there was the Irish helicopter",0
  3326.     dc.b    "pilot who crashed.",0
  3327.     dc.b    "He thought it was too cold so he",0
  3328.     dc.b    "turned the fan off.",0
  3329.     dc.b    " ",0
  3330.     dc.b    "Have you heard about the Irishman",0
  3331.     dc.b    "who paid £10 for a sheet of sandpaper?",0
  3332.     dc.b    "He thought it was a map of the Sahara",0
  3333.     dc.b    "Desert.",0,0
  3334.     
  3335. jke116:    dc.b    "An Irishman was sitting on his front",0
  3336.     dc.b    "doorstep dressed in pyjamas and",0
  3337.     dc.b    "dressing gown at three o'clock in the",0
  3338.     dc.b    "morning when a policeman passed by.",0
  3339.     dc.b    "'What are you doing here?' asked the",0
  3340.     dc.b    "policeman.  'I'm waiting for the cat",0
  3341.     dc.b    "to come home so I can put him out",0
  3342.     dc.b    "for the night' said the Irishman.",0,0
  3343.     dc.b    " ",0
  3344.     dc.b    "Have you heard about the Irishman who",0
  3345.     dc.b    "took up water-polo?",0
  3346.     dc.b    "His horse got drowned.",0,0
  3347.     
  3348. jke117:    dc.b    "An old lady asked an Irish tramp why",0
  3349.     dc.b    "he was dressed in such a miserable",0
  3350.     dc.b    "collection of rags.  'It's a medical",0
  3351.     dc.b    "condition' he told her. 'There isn't",0
  3352.     dc.b    "a tailor in town who can measure me",0
  3353.     dc.b    "for a suit I'm that ticklish.'",0
  3354.     dc.b    " ",0
  3355.     dc.b    "An Irishman who was 4 feet 6 inches",0
  3356.     dc.b    "tall offered his services to a",0
  3357.     dc.b    "circus.  He claimed he was the",0
  3358.     dc.b    "tallest dwarf in the world.",0,0
  3359.     
  3360. jke118:    dc.b    "There once was an Irish medical",0
  3361.     dc.b    "student who failed all his exams in",0
  3362.     dc.b    "surgery because he couldn't lance a",0
  3363.     dc.b    "boil properly.",0
  3364.     dc.b    "He kept falling off the horse.",0
  3365.     dc.b    " ",0
  3366.     dc.b    "How do you recognise a superstitious",0
  3367.     dc.b    "Irishman?",0
  3368.     dc.b    "He won't work during any week with a",0
  3369.     dc.b    "Friday in it.",0,0
  3370.     
  3371. jke119:    dc.b    "The following sign is displayed",0
  3372.     dc.b    "prominently in an Irish shop:",0
  3373.     dc.b    "CREDIT IS GIVEN ONLY TO THOSE OVER",0
  3374.     dc.b    "EIGHTY - PROVIDED THEY ARE",0
  3375.     dc.b    "ACCOMPANIED BY BOTH GRANDPARENTS.",0
  3376.     dc.b    " ",0
  3377.     dc.b    "Have you heard about the Irishman who",0
  3378.     dc.b    "got a job as a quality control",0
  3379.     dc.b    "officer in a banana factory?",0
  3380.     dc.b    "They had to sack him because he kept",0
  3381.     dc.b    "throwing away all the ones that were",0
  3382.     dc.b    "bent.",0,0
  3383.     
  3384. jke120:    dc.b    "An Irishman once wrote to the",0
  3385.     dc.b    "Guinness Book of Records and claimed",0
  3386.     dc.b    "that he should be included.  He",0
  3387.     dc.b    "explained that at one time he had",0
  3388.     dc.b    "been the youngest person in the",0
  3389.     dc.b    "world.",0
  3390.     dc.b    " ",0
  3391.     dc.b    "Have you heard about the Irishman who",0
  3392.     dc.b    "bought a black and white dog?",0
  3393.     dc.b    "He thought the licence would be",0
  3394.     dc.b    "cheaper than for a coloured one.",0,0
  3395.     
  3396. jke121:    dc.b    "How do you recognise an aircraft",0
  3397.     dc.b    "designed by an Irishman?",0
  3398.     dc.b    "It has outside toilets.",0
  3399.     dc.b    " ",0
  3400.     dc.b    "'Gentlemen of the jury' shouted the",0
  3401.     dc.b    "crier in an Irish court'please",0
  3402.     dc.b    "proceed to your accustomed places.'",0
  3403.     dc.b    "The court erupted as the twelve",0
  3404.     dc.b    "Irishmen proceeded to rush towards",0
  3405.     dc.b    "the dock.",0,0
  3406.     
  3407. jke122:    dc.b    "An Irishman saw a lobster pot for the",0
  3408.     dc.b    "first time and having been told what",0
  3409.     dc.b    "it was called exclaimed 'I don't",0
  3410.     dc.b    "believe it.  How would you get a",0
  3411.     dc.b    "lobster to sit on one of those",0
  3412.     dc.b    "things?'",0
  3413.     dc.b    " ",0
  3414.     dc.b    "An Irish lawyer whose client was",0
  3415.     dc.b    "charged with murdering his father and",0
  3416.     dc.b    "mother by chopping their heads off",0
  3417.     dc.b    "with an axe opened his defence as",0
  3418.     dc.b    "follows:  'Gentlemen of the jury",0
  3419.     dc.b    "consider this poor orphan....'",0,0
  3420.     
  3421. jke123:    dc.b    "What do you find written on the",0
  3422.     dc.b    "bottom of Irish beer bottles?",0
  3423.     dc.b    "Open other end.",0
  3424.     dc.b    "What do you find written on the top",0
  3425.     dc.b    "of Irish beer bottles?",0
  3426.     dc.b    "See other end for instructions.",0
  3427.     dc.b    " ",0
  3428.     dc.b    "How do you recognise a roll of Irish",0
  3429.     dc.b    "toilet paper?",0
  3430.     dc.b    "Look for the instructions printed on",0
  3431.     dc.b    "every sheet.",0,0
  3432.     
  3433. jke124:    dc.b    "Have you heard about the Irish girl",0
  3434.     dc.b    "who came second in a beauty contest?",0
  3435.     dc.b    "She was the only entrant.",0
  3436.     dc.b    " ",0
  3437.     dc.b    "How does an Irishman do a 'Spot the",0
  3438.     dc.b    "Ball' entry?",0
  3439.     dc.b    "He prods around his newspaper with a",0
  3440.     dc.b    "pin until he hears 'pssst'.",0
  3441.     dc.b    " ",0
  3442.     dc.b    "How many Irishman does it take to",0
  3443.     dc.b    "carry out a kidnapping?",0
  3444.     dc.b    "Ten - one to capture the kid and nine",0
  3445.     dc.b    "to write the ransom note.",0,0
  3446.     
  3447. jke125:    dc.b    "Have you heard the sad story of the",0
  3448.     dc.b    "Irishman who was a haemophiliac?",0
  3449.     dc.b    "He tried to cure himself by",0
  3450.     dc.b    "acupuncture.",0
  3451.     dc.b    " ",0
  3452.     dc.b    "How do you recognise an Irish cuckoo",0
  3453.     dc.b    "clock?",0
  3454.     dc.b    "Every twenty-five minutes the cuckoo",0
  3455.     dc.b    "pops its head out and asks the time.",0
  3456.     dc.b    " ",0
  3457.     dc.b    "How do you sink a submarine designed",0
  3458.     dc.b    "by an Irishman?",0
  3459.     dc.b    "Put it in water.",0,0
  3460.     
  3461. jke126:    dc.b    "An Irishman joined the army and after",0
  3462.     dc.b    "three years' service was awarded the",0
  3463.     dc.b    "special crossed knife and fork",0
  3464.     dc.b    "insignia.  This was to celebrate",0
  3465.     dc.b    "three years of eating with a knife",0
  3466.     dc.b    "and fork without accident.",0
  3467.     dc.b    " ",0
  3468.     dc.b    "An Irishman was on his first visit to",0
  3469.     dc.b    "a zoo.  He was annoyed because he",0
  3470.     dc.b    "followed the sign LADIES but they",0
  3471.     dc.b    "were all locked in their cages where",0
  3472.     dc.b    "he couldn't see them.",0,0
  3473.     
  3474. jke127:    dc.b    "An Irish traffic warden explained the",0
  3475.     dc.b    "system of yellow lines on city",0
  3476.     dc.b    "streets:  One yellow line means no",0
  3477.     dc.b    "parking at all, Two yellow lines mean",0
  3478.     dc.b    "no parking at all at all",0
  3479.     dc.b    " ",0
  3480.     dc.b    "Two Irishmen were waiting at a bus",0
  3481.     dc.b    "stop.  When the bus arrived it turned",0
  3482.     dc.b    "out to be a one-man bus so one man",0
  3483.     dc.b    "turned to the other and said: 'You",0
  3484.     dc.b    "take this bus I'll wait for the next",0
  3485.     dc.b    "one.'",0,0
  3486.     
  3487. jke128:    dc.b    "Have you heard about the Irishman who",0
  3488.     dc.b    "decided to have only three children?",0
  3489.     dc.b    "He heard that every one in four",0
  3490.     dc.b    "children born is Chinese.",0
  3491.     dc.b    " ",0
  3492.     dc.b    "How do you recognise an Irishman",0
  3493.     dc.b    "staying in a fancy hotel?",0
  3494.     dc.b    "He's the one trying to slam the",0
  3495.     dc.b    "revolving door.",0
  3496.     dc.b    " ",0
  3497.     dc.b    "Have you heard about the Irishman who",0
  3498.     dc.b    "thought that Chou-en-Lai was Chinese",0
  3499.     dc.b    "for bed and breakfast?",0,0
  3500.     
  3501. jke129:    dc.b    "Have you heard about the Irishwoman",0
  3502.     dc.b    "who was ironing her husband's socks?",0
  3503.     dc.b    "She burnt his feet.",0
  3504.     dc.b    " ",0
  3505.     dc.b    "Have you heard about the Irishman who",0
  3506.     dc.b    "thought that a barbecue was a line of",0
  3507.     dc.b    "people waiting outside a gents",0
  3508.     dc.b    "hairdressers?",0
  3509.     dc.b    " ",0
  3510.     dc.b    "What goes putt-putt-putt-putt....?",0
  3511.     dc.b    "An Irish golfer.",0,0
  3512.     
  3513. jke130:    dc.b    "How can we be sure that Santa Claus",0
  3514.     dc.b    "is an Irishman?",0
  3515.     dc.b    "There are two doors in the average",0
  3516.     dc.b    "house and eight windows and he goes",0
  3517.     dc.b    "down the chimney.",0
  3518.     dc.b    " ",0
  3519.     dc.b    "Have you heard about the Irishman",0
  3520.     dc.b    "with a serious problem?",0
  3521.     dc.b    "He thought he had a bigger and better",0
  3522.     dc.b    "inferiority complex than anybody in",0
  3523.     dc.b    "the world.",0,0
  3524.     
  3525. jke131:    dc.b    "'I hear that your husband had a post-",0
  3526.     dc.b    "mortem operation' said one",0
  3527.     dc.b    "Irishwoman to another.  'Yes",0
  3528.     dc.b    "replied the second; 'but not until",0
  3529.     dc.b    "after he was dead.  If only they had",0
  3530.     dc.b    "done it a bit earlier it might have",0
  3531.     dc.b    "saved his life.'",0
  3532.     dc.b    " ",0
  3533.     dc.b    "An Irishman explained that the fact",0
  3534.     dc.b    "that cream is more expensive than",0
  3535.     dc.b    "milk as follows: Cream is dearer",0
  3536.     dc.b    "because they find it harder to make a",0
  3537.     dc.b    "cow sit on the smaller bottles.",0,0
  3538.     
  3539. jke132: dc.b    "Why do Irishmen make the best secret",0
  3540.     dc.b    "agents?",0
  3541.     dc.b    "Even under torture they can't",0
  3542.     dc.b    "remember what they have been assigned",0
  3543.     dc.b    "to do.",0
  3544.     dc.b    " ",0
  3545.     dc.b    "Two Irishmen kidnapped a little Irish",0
  3546.     dc.b    "boy.  Two days after the kidnapping",0
  3547.     dc.b    "they sent the little lad home to his",0
  3548.     dc.b    "parents with a ransome note.  The",0
  3549.     dc.b    "next day the parents sent him back",0
  3550.     dc.b    "with the money.",0,0
  3551.     
  3552. jke133: dc.b    "Have you heard about the Irishman who",0
  3553.     dc.b    "joined the Mafia?",0
  3554.     dc.b    "They made him an offer he couldn't",0
  3555.     dc.b    "understand.",0
  3556.     dc.b    " ",0
  3557.     dc.b    "'How did Mrs O'Sullivan's appendix",0
  3558.     dc.b    "operation go?' an Irish doctor was",0
  3559.     dc.b    "asked by his nurse.  'Appendix",0
  3560.     dc.b    "operation?' he screamed. 'I was told",0
  3561.     dc.b    "it was a post-mortem.'",0,0
  3562.     
  3563. jke134:    dc.b    "An Irishman was being charged with",0
  3564.     dc.b    "driving down the middle of the road.",0
  3565.     dc.b    "In defence he stated that one of the",0
  3566.     dc.b    "instructions in his driving test",0
  3567.     dc.b    "application form had been 'Tear along",0
  3568.     dc.b    "the dotted line'.",0
  3569.     dc.b    " ",0
  3570.     dc.b    "An Irishman who was fined £10 for",0
  3571.     dc.b    "being drunk and disorderly told the",0
  3572.     dc.b    "judge that he had no money.  'You",0
  3573.     dc.b    "would if you hadn't spent it on",0
  3574.     dc.b    "drink' the judge told him.",0,0
  3575.     
  3576. jke135:    dc.b    "Why do Irish workers never go on",0
  3577.     dc.b    "strike?",0
  3578.     dc.b    "Nobody would notice the difference.",0
  3579.     dc.b    " ",0
  3580.     dc.b    "Have you heard about the Irishman who",0
  3581.     dc.b    "never took his wife out anywhere?",0
  3582.     dc.b    "His mother had warned him not to go",0
  3583.     dc.b    "out with married women.",0
  3584.     dc.b    " ",0
  3585.     dc.b    "Have you heard about the Irishman who",0
  3586.     dc.b    "spent three hours in a car-wash?",0
  3587.     dc.b    "He thought it was raining too hard to",0
  3588.     dc.b    "drive.",0,0
  3589.     
  3590. jke136:    dc.b    "An Irishman was thrilled with his",0
  3591.     dc.b    "genuine Rembrandt.  'It's one of the",0
  3592.     dc.b    "few works he did in ballpoint' he",0
  3593.     dc.b    "told his friends proudly.",0
  3594.     dc.b    " ",0
  3595.     dc.b    "An Irishman invented a cure for",0
  3596.     dc.b    "seasickness - sit under a tree.",0
  3597.     dc.b    " ",0
  3598.     dc.b    "An Irishman was asked for names for",0
  3599.     dc.b    "his sister's newly born twins a boy",0
  3600.     dc.b    "and a girl.  He suggested Denise and",0
  3601.     dc.b    "Denephew.",0,0
  3602.     
  3603. jke137:    dc.b    "Have you heard about the Irishman who",0
  3604.     dc.b    "lost £10 on the Grand National?",0
  3605.     dc.b    "Then he lost £15 on the action",0
  3606.     dc.b    "replay.",0
  3607.     dc.b    " ",0
  3608.     dc.b    "Then there was the Irishman who made",0
  3609.     dc.b    "a fortune by taking up a collection",0
  3610.     dc.b    "for the widow of the Unknown Soldier.",0
  3611.     dc.b    " ",0
  3612.     dc.b    "Have you heard about the Irishman who",0
  3613.     dc.b    "cut a hole in his umbrella?",0
  3614.     dc.b    "He wanted to know when it stopped",0
  3615.     dc.b    "raining.",0,0
  3616.     
  3617. jke138:    dc.b    "In what month do the Irishmen drink",0
  3618.     dc.b    "the least Guinness?",0
  3619.     dc.b    "February.",0
  3620.     dc.b    " ",0
  3621.     dc.b    "How do you recognise an Irish",0
  3622.     dc.b    "intellectual?",0
  3623.     dc.b    "He doesn't move his lips when he",0
  3624.     dc.b    "reads.",0
  3625.     dc.b    " ",0
  3626.     dc.b    "Why is the wheelbarrow the greatest",0
  3627.     dc.b    "of all human inventions?",0
  3628.     dc.b    "It taught the Irish to walk on their",0
  3629.     dc.b    "hind legs.",0,0
  3630.     
  3631. jke139:    dc.b    "How do you tell the age of an",0
  3632.     dc.b    "Irishman?",0
  3633.     dc.b    "Cut off his head and count the rings.",0
  3634.     dc.b    " ",0
  3635.     dc.b    "Why do so many Irishmen have",0
  3636.     dc.b    "scratched faces?",0
  3637.     dc.b    "From trying to eat with forks.",0,0
  3638.     
  3639. jke140a:dc.b    "An Irishman went to a library and",0
  3640.     dc.b    "asked the librarian if he could",0
  3641.     dc.b    "recommend any plays for him to read.",0
  3642.     dc.b    "'How about Shaw?' said the librarian.",0
  3643.     dc.b    "'I'll give him a try' answered the",0
  3644.     dc.b    "Irishman so the librarian handed him",0
  3645.     dc.b    "The Complete Plays of George Bernard",0
  3646.     dc.b    "Shaw.  Next day he returned saying he",0
  3647.     dc.b    "had finished the book and had enjoyed",0
  3648.     dc.b    "it very much.  'Do you have any more",0
  3649.     dc.b    "plays by the same author?' he  >>>",0,0
  3650.     
  3651. jke140b:dc.b    "enquired.  For a joke the librarian",0
  3652.     dc.b    "gave him a telephone directory to",0
  3653.     dc.b    "take home and when the Irishman",0
  3654.     dc.b    "returned two days later the librarian",0
  3655.     dc.b    "asked him if he enjoyed it.  'Well'",0
  3656.     dc.b    "said the Irishman 'I didn't think",0
  3657.     dc.b    "much of the plot but what a cast.'",0,0
  3658.  
  3659. jke141: dc.b    "A man was travelling in his car but",0
  3660.     dc.b    "wasn't sure if his indicators were",0
  3661.     dc.b    "working.  So he asked an Irishman to",0
  3662.     dc.b    "go behind the car and tell him.",0
  3663.     dc.b    "'Well' he shouted after a",0
  3664.     dc.b    "few seconds 'are they working?'",0
  3665.     dc.b    "'They are they aren't they are",0
  3666.     dc.b    "they aren't ' replied the Irishman.",0,0
  3667.     
  3668. jke142:    dc.b    "Two poteen makers were on their first",0
  3669.     dc.b    "train journey.  With them they had a",0
  3670.     dc.b    "pint bottle of poteen.  As the first",0
  3671.     dc.b    "man raised the bottle to his lips and",0
  3672.     dc.b    "took a long drink the train passed",0
  3673.     dc.b    "through a long tunnel.  'Don't touch",0
  3674.     dc.b    "that stuff' he yelled to the second",0
  3675.     dc.b    "man 'I've just been struck blind.'",0,0
  3676.     
  3677. jke143:    dc.b    "An Irishman went to a psychiatrist",0
  3678.     dc.b    "and told him that his wife thought",0
  3679.     dc.b    "she was a television set.  'Don't",0
  3680.     dc.b    "worry' said the psychiatrist 'I'll",0
  3681.     dc.b    "soon cure her of that.' 'Oh I don't",0
  3682.     dc.b    "want her cured' said the Irishman'",0
  3683.     dc.b    "just tune her in to BBC1.'",0,0
  3684.     
  3685. jke144:    dc.b    "An Irishman arrived home early one",0
  3686.     dc.b    "afternoon and as he came in the door",0
  3687.     dc.b    "the telephone rang so he answered it.",0
  3688.     dc.b    "'Who is that on the phone?' shouted",0
  3689.     dc.b    "his wife from the dining-room.  'It",0
  3690.     dc.b    "was a wrong number darling' said",0
  3691.     dc.b    "the Irishman 'Some fellow looking",0
  3692.     dc.b    "for the Met. Office.  He wanted to",0
  3693.     dc.b    "know if the coast was clear.'",0,0
  3694.     
  3695. jke145:    dc.b    "An Irishman was explaining the",0
  3696.     dc.b    "mysteries of science and",0
  3697.     dc.b    "telecommunications to his small son.",0
  3698.     dc.b    "'The telephone' he told him 'Is",0
  3699.     dc.b    "like a huge dog with his tail in",0
  3700.     dc.b    "London and his head in Dublin.  When",0
  3701.     dc.b    "you tread on his tail in London he",0
  3702.     dc.b    "barks in Dublin.'",0
  3703.     dc.b    "'That's wonderful' said the small",0
  3704.     dc.b    "boy 'now tell me about the radio.'",0
  3705.     dc.b    "'The radio is exactly the same' said",0
  3706.     dc.b    "the Irishman' but without the dog.'",0,0
  3707.     
  3708. jke146:    dc.b    "An Irishman's coat fell down a sewer",0
  3709.     dc.b    "and he spent half an hour trying to",0
  3710.     dc.b    "get it out again.  A passerby",0
  3711.     dc.b    "suggested he abandoned the coat",0
  3712.     dc.b    "because if he retrieved it, it would",0
  3713.     dc.b    "never be fit to wear again.  'Oh I",0
  3714.     dc.b    "know that' said the Irishman 'but",0
  3715.     dc.b    "there were four sandwiches in the",0
  3716.     dc.b    "pocket.'",0,0
  3717.     
  3718. jke147:    dc.b    "Two Irishmen were talking in a Dublin",0
  3719.     dc.b    "pub.  'I wouldn't go to America if",0
  3720.     dc.b    "you paid me' said the first.  'Why",0
  3721.     dc.b    "'said the second.  'Well for one",0
  3722.     dc.b    "thing they all drive on the right-",0
  3723.     dc.b    "hand side of the road there.'  'And",0
  3724.     dc.b    "what's wrong with that?' said the",0
  3725.     dc.b    "second man.  'Well I tried it",0
  3726.     dc.b    "driving in Dublin the other day and",0
  3727.     dc.b    "it's terrible.'",0,0
  3728.     
  3729. jke148:    dc.b    "An Irishman who lived in a remote",0
  3730.     dc.b    "mountain village was awakened one",0
  3731.     dc.b    "morning by the postman delivering a",0
  3732.     dc.b    "letter.  'You shouldn't have come all",0
  3733.     dc.b    "that way just to bring me one",0
  3734.     dc.b    "letter' he said. 'You should've",0
  3735.     dc.b    "posted it.'",0,0
  3736.     
  3737. jke149:    dc.b    "An Irishman was condemned to receive",0
  3738.     dc.b    "forty lashes but the more they",0
  3739.     dc.b    "whipped him the more he laughed.",0
  3740.     dc.b    "'Why are you laughing?' they asked",0
  3741.     dc.b    "him.  'You don't understand' he told",0
  3742.     dc.b    "them helpless with laughter' you're",0
  3743.     dc.b    "whipping the wrong man.'",0,0
  3744.     
  3745. jke151:    dc.b    "An Irishman got the position as an",0
  3746.     dc.b    "assistant in a hotel kitchen and was",0
  3747.     dc.b    "given the job of filling all the salt",0
  3748.     dc.b    "cellars.  After a few hours he was",0
  3749.     dc.b    "asked if he had finished but replied",0
  3750.     dc.b    "that he had only managed to fill one.",0
  3751.     dc.b    "'It's the devil's own job putting the",0
  3752.     dc.b    "salt in through that little hole at",0
  3753.     dc.b    "the top' he said.",0,0
  3754.     
  3755. jke152:    dc.b    "An Irish travel agent noticed an old",0
  3756.     dc.b    "lady and old man gazing longingly at",0
  3757.     dc.b    "his display of posters for exotic",0
  3758.     dc.b    "holiday resorts.  As a publicity",0
  3759.     dc.b    "gimmick he decided to offer them a",0
  3760.     dc.b    "free round-the-world cruise with all",0
  3761.     dc.b    "expenses paid.",0
  3762.     dc.b    "When they returned some months later",0
  3763.     dc.b    "he asked the old lady if they had",0
  3764.     dc.b    "enjoyed themselves.  'Wonderfully'",0
  3765.     dc.b    "she replied 'but tell me one thing",0
  3766.     dc.b    "who was that old man I had to sleep",0
  3767.     dc.b    "with every night?",0,0
  3768.     
  3769. jke153:    dc.b    "An Irishman got a job working in a",0
  3770.     dc.b    "storeroom and the first assignment he",0
  3771.     dc.b    "was given was to put THIS END UP",0
  3772.     dc.b    "labels on a couple of hundred crates.",0
  3773.     dc.b    "A little later when asked if he had",0
  3774.     dc.b    "managed to do it he answered 'Yes",0
  3775.     dc.b    "and in case they couldn't be seen on",0
  3776.     dc.b    "the top.  I've them on the bottom as",0
  3777.     dc.b    "well.'",0,0
  3778.     
  3779. jke154:    dc.b    "An old Irishman and his wife were on",0
  3780.     dc.b    "a visit to Dublin and decided to",0
  3781.     dc.b    "have a meal at an expensive",0
  3782.     dc.b    "restaurant where they ordered a four-",0
  3783.     dc.b    "course dinner with steak as the main",0
  3784.     dc.b    "course.  When the meal was served the",0
  3785.     dc.b    "Irishman tucked in hungrily while his",0
  3786.     dc.b    "wife sat looking at her plate for",0
  3787.     dc.b    "over ten minutes.  'Isn't the meal to",0
  3788.     dc.b    "madam's satisfaction?' asked the head",0
  3789.     dc.b    "waiter.  'Certainly it is' said the",0
  3790.     dc.b    "old lady with relish' but I'm waiting",0
  3791.     dc.b    "for Pa to finish with the teeth.'",0,0
  3792.     
  3793. jke155:    dc.b    "A successful Irish business man was",0
  3794.     dc.b    "boasting about how poor his family",0
  3795.     dc.b    "had been when he was a child.  'For",0
  3796.     dc.b    "the first five years' he claimed 'I",0
  3797.     dc.b    "hadn't a stitch to wear.  Then when I",0
  3798.     dc.b    "was six my father bought me a cap and",0
  3799.     dc.b    "I used to sit looking out the window.'",0,0
  3800.     
  3801. jke156:    dc.b    "An Irishman was lecturing about his",0
  3802.     dc.b    "travels in foreign countries 'I came",0
  3803.     dc.b    "across a strange custom among the",0
  3804.     dc.b    "Chinese' he told his audience. 'If a",0
  3805.     dc.b    "rich man was condemned to death he",0
  3806.     dc.b    "could save his life by paying someone",0
  3807.     dc.b    "to die in his place.  Many of the",0
  3808.     dc.b    "poor people made their living by",0
  3809.     dc.b    "acting as substitutes in this way.'",0,0
  3810.     
  3811. jke157:    dc.b    "An Irishman sent his son to",0
  3812.     dc.b    "university and after a while the lad",0
  3813.     dc.b    "was awarded his B.A.  On graduation",0
  3814.     dc.b    "he received the following telegram",0
  3815.     dc.b    "from his father:",0
  3816.     dc.b    "'Congratulations on your B.A.  Now",0
  3817.     dc.b    "for the other 24 letters and this",0
  3818.     dc.b    "time try and get them in the right",0
  3819.     dc.b    "order.'",0,0
  3820.     
  3821. jke158:    dc.b    "An Irish newspaper once printed the",0
  3822.     dc.b    "following notice on its front page:",0
  3823.     dc.b    "Today we present our prize crossword",0
  3824.     dc.b    "first prize £1,000.  But for those",0
  3825.     dc.b    "who want to do it just for fun and",0
  3826.     dc.b    "don't want to wait until next week",0
  3827.     dc.b    "for the answers you can find the",0
  3828.     dc.b    "solution on the back page.",0,0
  3829.     
  3830. jke159:    dc.b    "A pilot in a single-seat jet fighter",0
  3831.     dc.b    "once ran into trouble when flying",0
  3832.     dc.b    "over Dublin.  Seeing that his",0
  3833.     dc.b    "aircraft was on fire he used the",0
  3834.     dc.b    "ejector seat to bale out.  Two",0
  3835.     dc.b    "farmers were looking up at the scene",0
  3836.     dc.b    "and one turned to the other and said",0
  3837.     dc.b    "'Mick, what will they think of next?",0
  3838.     dc.b    "I'm sure that was a flying toasting",0
  3839.     dc.b    "machine.'",0,0
  3840.     
  3841. jke160:    dc.b    "Two Irish labourers wandering",0
  3842.     dc.b    "aimlessly across their site were",0
  3843.     dc.b    "asked by their foreman what they were",0
  3844.     dc.b    "doing.  'We're carrying these bricks",0
  3845.     dc.b    "to the other end of the site' they",0
  3846.     dc.b    "told him.  'What bricks?' he asked",0
  3847.     dc.b    "them.  'Will you look at that' said",0
  3848.     dc.b    "one Irishman to the other 'we've",0
  3849.     dc.b    "forgotten the bricks.'",0,0
  3850.     
  3851. jke161:    dc.b    "An Irishman more than a little drunk",0
  3852.     dc.b    "arrived home in the early",0
  3853.     dc.b    "hours of the morning wondering how he",0
  3854.     dc.b    "could get up the stairs without",0
  3855.     dc.b    "waking his wife.  Suddenly he had a",0
  3856.     dc.b    "bright idea.  Tying all the pots and",0
  3857.     dc.b    "pans he could find to piece of string",0
  3858.     dc.b    "he proceeded to drag them upstairs.",0
  3859.     dc.b    "'She'll never hear me with all this",0
  3860.     dc.b    "noise' he laughed.",0,0
  3861.     
  3862. jke162:    dc.b    "Two Irishmen wanted to make some easy",0
  3863.     dc.b    "money so they bought a truckload of",0
  3864.     dc.b    "turnips at 10p each.  They sold the",0
  3865.     dc.b    "turnips at 10p each and when they",0
  3866.     dc.b    "counted the proceeds they were amazed",0
  3867.     dc.b    "to find that they had exactly the",0
  3868.     dc.b    "same amount of money as they had",0
  3869.     dc.b    "started with.  'See' said the first",0
  3870.     dc.b    "man to the other'I told you we",0
  3871.     dc.b    "should have bought a bigger truck.'",0,0
  3872.     
  3873. jke163:    dc.b    "An Irishman on a visit to Dublin",0
  3874.     dc.b    "decided to send a surprise birthday",0
  3875.     dc.b    "gift to his wife at home so he rang",0
  3876.     dc.b    "Interparrot and asked them to send",0
  3877.     dc.b    "her a parrot that could speak seven",0
  3878.     dc.b    "languages.  When he arrived home he",0
  3879.     dc.b    "found that she had plucked  the",0
  3880.     dc.b    "parrot and roasted it.  'You fool'",0
  3881.     dc.b    "he screamed at her 'that bird spoke",0
  3882.     dc.b    "seven different languages.'  'Well",0
  3883.     dc.b    "why didn't he say something before I",0
  3884.     dc.b    "put him in the oven?' she asked.",0,0
  3885.     
  3886. jke164:    dc.b    "One Irishman was trying to explain to",0
  3887.     dc.b    "another some of the basic theory of",0
  3888.     dc.b    "thermodynamics.  'Heat expands and",0
  3889.     dc.b    "cold contracts' he told him.  'I",0
  3890.     dc.b    "understand perfectly' said the other",0
  3891.     dc.b    "man 'how else could you explain why",0
  3892.     dc.b    "the days are longer in the summer and",0
  3893.     dc.b    "shorter in the winter?'",0,0
  3894.     
  3895. jke165:    dc.b    "Three Irishman were caught up in the",0
  3896.     dc.b    "French Revolution and were sentenced",0
  3897.     dc.b    "to be guillotined.  As the first man",0
  3898.     dc.b    "waited for the blade to fall it stuck",0
  3899.     dc.b    "and he was released according",0
  3900.     dc.b    "to the old custom.  The same thing",0
  3901.     dc.b    "happened to the second man and he too",0
  3902.     dc.b    "was released.  As the third man",0
  3903.     dc.b    "looked up waiting for the blade to",0
  3904.     dc.b    "fall he shouted out.  'Hold on I",0
  3905.     dc.b    "think I can see what's making it",0
  3906.     dc.b    "stick.'",0,0
  3907.     
  3908. jke166:    dc.b    "An Irishman walked into a pub with a",0
  3909.     dc.b    "front door under his arm.  'Why are",0
  3910.     dc.b    "you carrying that door?' asked the",0
  3911.     dc.b    "barman.  'Well' said the Irishman",0
  3912.     dc.b    "'last night I lost my key so in case",0
  3913.     dc.b    "anyone finds it and breaks into my",0
  3914.     dc.b    "house I'm carrying the door around.'",0
  3915.     dc.b    "'But what happens if you lose the",0
  3916.     dc.b    "door?'  'That's O.K.' said the",0
  3917.     dc.b    "Irishman 'I've left a window open.'",0,0
  3918.     
  3919. jke167:    dc.b    "An Irishman got a job on a building",0
  3920.     dc.b    "site but the foreman was not",0
  3921.     dc.b    "satisfied with the amount of work he",0
  3922.     dc.b    "was doing.  One afternoon he found",0
  3923.     dc.b    "the man digging in a pit.  He ordered",0
  3924.     dc.b    "him out of the pit and he did so.",0
  3925.     dc.b    "'Now get back in again' he told him.",0
  3926.     dc.b    "After he had done it six or seven",0
  3927.     dc.b    "times the Irishman said 'Look what",0
  3928.     dc.b    "the hell are you playing at?'",0
  3929.     dc.b    "'That's better' said the foreman",0
  3930.     dc.b    "'you're taking more out on your boots",0
  3931.     dc.b    "than you were with your shovel.'",0,0
  3932.     
  3933. jke168:    dc.b    "An Irishman telephoned the police and",0
  3934.     dc.b    "asked them to come straight away",0
  3935.     dc.b    "because the steering wheel the gear",0
  3936.     dc.b    "lever the clutch the brake and the",0
  3937.     dc.b    "accelerator of his car had all been",0
  3938.     dc.b    "stolen.  A few minutes later he rang",0
  3939.     dc.b    "back and told them not to bother",0
  3940.     dc.b    "because he had got into the back seat",0
  3941.     dc.b    "by mistake.",0,0
  3942.     
  3943. jke169:    dc.b    "An Irishman was in court charged with",0
  3944.     dc.b    "stealing a horse. 'You have a choice'",0
  3945.     dc.b    "the judge said. 'You can be",0
  3946.     dc.b    "tried by me alone or by a jury of",0
  3947.     dc.b    "your peers.'  'What do you mean by",0
  3948.     dc.b    "'peers'?' asked the Irishman.  'Peers",0
  3949.     dc.b    "are your equals men of your own kind",0
  3950.     dc.b    "and class.'  'Try me yourself then",0
  3951.     dc.b    "said the Irishman, 'I don't want to",0
  3952.     dc.b    "be tried by a bunch of villains.'",0,0
  3953.     
  3954. jke170:    dc.b    "An Irishman and a Scotsman were",0
  3955.     dc.b    "taking an intelligence test.  'What",0
  3956.     dc.b    "bird does not build its own nest?'",0
  3957.     dc.b    "asked the examiner.  'The canary'",0
  3958.     dc.b    "said the Scot.  'he lives in a cage.'",0
  3959.     dc.b    "'The cuckoo' said the Irishman.",0
  3960.     dc.b    "'Very good' said the examiner to the",0
  3961.     dc.b    "Irishman.  'How did you know?'",0
  3962.     dc.b    "'Everybody knows the cuckoo lives in",0
  3963.     dc.b    "a clock' said the Irishman.",0,0
  3964.     
  3965. jke171:    dc.b    "An Irishman was charged with murder",0
  3966.     dc.b    "but was acquitted.  Afterwards he",0
  3967.     dc.b    "told his lawyer that he could prove",0
  3968.     dc.b    "he was innocent because he was in",0
  3969.     dc.b    "jail at the time the crime was",0
  3970.     dc.b    "committed.  'Why on earth didn't you",0
  3971.     dc.b    "tell that to the court?' asked his",0
  3972.     dc.b    "lawyer.  'I thought it might",0
  3973.     dc.b    "prejudice the jury' said the",0
  3974.     dc.b    "Irishman.",0,0
  3975.     
  3976. jke172:    dc.b    "An Englishman went to live in Dublin",0
  3977.     dc.b    "but unfortunately died.  Two",0
  3978.     dc.b    "Dubliners went around from house to",0
  3979.     dc.b    "house collecting money to give him a",0
  3980.     dc.b    "decent funeral.  'Excuse me sir'",0
  3981.     dc.b    "they asked one old Dubliner",0
  3982.     dc.b    "'would you contribute £1 to bury an",0
  3983.     dc.b    "Englishman?'  'Look' said the",0
  3984.     dc.b    "Dubliner'here's £10 - bury ten of",0
  3985.     dc.b    "them.'",0,0
  3986.     
  3987. jke173:    dc.b    "An Irishman went to a concert and had",0
  3988.     dc.b    "to listen to a ventriloquist tell",0
  3989.     dc.b    "Irish joke after Irish joke.",0
  3990.     dc.b    "Finally he'd had enough and shouted",0
  3991.     dc.b    "'I'm fed up with these jokes.  What",0
  3992.     dc.b    "makes you think we're all that stupid'",0
  3993.     dc.b    "The ventriloquist said 'Calm down.",0
  3994.     dc.b    "These are only jokes and I've",0
  3995.     dc.b    "never met an Irishman yet who didn't",0
  3996.     dc.b    "have a sense of humour.'  'I'm not",0
  3997.     dc.b    "talking to you' raged the Irishman",0
  3998.     dc.b    "'I'm talking to the little fellow on",0
  3999.     dc.b    "your knee.'",0,0
  4000.     
  4001. jke174:    dc.b    "Why are there only 20 hours in an",0
  4002.     dc.b    "Irish day?",0
  4003.     dc.b    "Have you ever seen an Irishman with",0
  4004.     dc.b    "24 fingers and toes.",0
  4005.     dc.b    " ",0
  4006.     dc.b    "Did you hear about the Irishman who's",0
  4007.     dc.b    "wife wanted a coat made out of animal",0
  4008.     dc.b    "skin?",0
  4009.     dc.b    "He gave her a donkey jacket.",0
  4010.     dc.b    " ",0
  4011.     dc.b    "How can you tell an Irishman in",0
  4012.     dc.b    "Holland.",0
  4013.     dc.b    "Wooden wellies.",0,0
  4014.     
  4015. jke175:    dc.b    "An Irishman signed in at a London",0
  4016.     dc.b    "hotel.  The manager noticed that the",0
  4017.     dc.b    "signature was XX and mentioned to the",0
  4018.     dc.b    "man that he found it puzzling.  'Oh",0
  4019.     dc.b    "there's no need to be puzzled' said",0
  4020.     dc.b    "the Irishman.  'The first X stands",0
  4021.     dc.b    "for Patrick Maguire and the second",0
  4022.     dc.b    "stands for B.A.'",0,0
  4023.     
  4024. jke176:    dc.b    "Did you hear about the Irishman who",0
  4025.     dc.b    "kept his budgie in a goldfish bowl?",0
  4026.     dc.b    "A friend asked him why he didn't put",0
  4027.     dc.b    "it in a cage like everyone else.  'I",0
  4028.     dc.b    "tried that' he said 'but the water",0
  4029.     dc.b    "kept coming out.'",0,0
  4030.     
  4031. jke177:    dc.b    "An Irishman arrived home very late",0
  4032.     dc.b    "one night with a black eye and a",0
  4033.     dc.b    "painful looking swelling on his left",0
  4034.     dc.b    "cheek.  'And what might have happened",0
  4035.     dc.b    "to you?' asked his wife.  'Well' he",0
  4036.     dc.b    "said  'I had a little set-to with",0
  4037.     dc.b    "that small German fellow who lives",0
  4038.     dc.b    "down the way.' 'What' yelled his",0
  4039.     dc.b    "wife 'why are you letting a sawed-",0
  4040.     dc.b    "off little runt of a man do that to",0
  4041.     dc.b    "you?' 'Oh now be quite' he said.",0
  4042.     dc.b    "'You shouldn't be disrespectful of",0
  4043.     dc.b    "the dead.'",0,0
  4044.     
  4045. jke178:    dc.b    "Did you hear about the Irishman who",0
  4046.     dc.b    "went to the dentist to have a wisdom",0
  4047.     dc.b    "tooth put in?",0
  4048.     dc.b    " ",0
  4049.     dc.b    "An Aer Lingus pilot was asked for his",0
  4050.     dc.b    "height and position and replied 'I'm",0
  4051.     dc.b    "five feet four and I'm in the front",0
  4052.     dc.b    "seat.'",0
  4053.     dc.b    " ",0
  4054.     dc.b    "Have you heard about the Irishman who",0
  4055.     dc.b    "went on the Generation Game and won a",0
  4056.     dc.b    "pair of sliding doors and a conveyor",0
  4057.     dc.b    "belt.",0,0
  4058.     
  4059. jke179:    dc.b    "A commercial traveller was passing",0
  4060.     dc.b    "through a small town in Ireland when",0
  4061.     dc.b    "he saw a sumptious funeral going",0
  4062.     dc.b    "past.  'Who's died?' he asked a",0
  4063.     dc.b    "passer-by.  'I'm not sure' replied",0
  4064.     dc.b    "the local 'but I think it's the one",0
  4065.     dc.b    "in the hearse.'",0
  4066.     dc.b    " ",0
  4067.     dc.b    "How do you keep an Irishman happy for",0
  4068.     dc.b    "an afternoon?",0
  4069.     dc.b    "Write P.T.O. on both sides of a piece",0
  4070.     dc.b    "of paper.",0,0
  4071.     
  4072. jke180:    dc.b    "What do Irishmen wear in the summer?",0
  4073.     dc.b    "Peep-toed wellies.",0
  4074.     dc.b    " ",0
  4075.     dc.b    "A crusty old lady went on holiday and",0
  4076.     dc.b    "asked her Irish neighbour to look",0
  4077.     dc.b    "after her goldfish.  On her return",0
  4078.     dc.b    "she asked him if he had changed the",0
  4079.     dc.b    "water.  'I most certainly have not'",0
  4080.     dc.b    "he replied.  'They didn't drink what",0
  4081.     dc.b    "I gave then last week.'",0,0
  4082.     
  4083. jke181:dc.b    "The captain of an Aer Lingus jet is",0
  4084.     dc.b    "identified by the three gold rings on",0
  4085.     dc.b    "his wellies.",0
  4086.     dc.b    " ",0
  4087.     dc.b    "How do you tell an Irish solicitor?",0
  4088.     dc.b    "Pin-striped donkey jacket and",0
  4089.     dc.b    "charcoal-grey wellies.",0,0
  4090.     
  4091. jke182:    dc.b    "An Irishman fell fifty feet and was",0
  4092.     dc.b    "asked if the fall hurt him",0
  4093.     dc.b    "'No' he said 'twas the abrupt stop'. He",0
  4094.     dc.b    "thought for a moment or two and then",0
  4095.     dc.b    "said 'I was actually lucky that the",0
  4096.     dc.b    "ground broke my fall.'",0,0
  4097.  
  4098. jke183:    dc.b    "An Irishman was mugged in New York",0
  4099.     dc.b    "but put up a terrific fight before",0
  4100.     dc.b    "yielding his wallet which contained",0
  4101.     dc.b    "$5?  'You put up a fight like that",0
  4102.     dc.b    "for $5?~ asked his attackers",0
  4103.     dc.b    "incredulously.  'No' he moaned 'I",0
  4104.     dc.b    "thought you were after the $100 I've",0
  4105.     dc.b    "got hidden in my left shoe.'",0
  4106.     dc.b    " ",0
  4107.     dc.b    "How do you brainwash an Irishman?",0
  4108.     dc.b    "Fill his wellies full of water.",0,0
  4109.     
  4110. jke184:    dc.b    "An Irishman in New York was looking",0
  4111.     dc.b    "at the Empire State Building when a",0
  4112.     dc.b    "conman approached him.  'I'm sorry'",0
  4113.     dc.b    "said the conman 'but I'm afraid it's",0
  4114.     dc.b    "a dollar for every storey you look",0
  4115.     dc.b    "at.'  'Oh' said the Irishman 'I",0
  4116.     dc.b    "only looked at 5.'  And he gave the",0
  4117.     dc.b    "conman $5.  He smiled at a bystander",0
  4118.     dc.b    "when the conman had gone 'I fooled",0
  4119.     dc.b    "him' he said 'I was looking at the",0
  4120.     dc.b    "top.'",0,0
  4121.     
  4122. jke185:    dc.b    "Did you hear about the Irishman who",0
  4123.     dc.b    "got a job sweeping leaves in St",0
  4124.     dc.b    "James's Park?",0
  4125.     dc.b    "He fell out of a tree and broke his",0
  4126.     dc.b    "leg.",0
  4127.     dc.b    " ",0
  4128.     dc.b    "How do you recognise an Irish firing",0
  4129.     dc.b    "squad?",0
  4130.     dc.b    "It forms a circle.",0
  4131.     dc.b    "How can you tell if the prisoner is",0
  4132.     dc.b    "Irish?",0
  4133.     dc.b    "He doesn't duck.",0,0
  4134.     
  4135. jke186:    dc.b    "An Irishman went into a hardware",0
  4136.     dc.b    "store and bought two dozen mothballs.",0
  4137.     dc.b    "The next day he went in again and",0
  4138.     dc.b    "asked for another two dozen.  'But",0
  4139.     dc.b    "you bought two dozen only yesterday'",0
  4140.     dc.b    "said the assistant.  'I know' said",0
  4141.     dc.b    "the man 'but those moths are very",0
  4142.     dc.b    "hard to hit.'",0
  4143.     dc.b    " ",0
  4144.     dc.b    "Why wasn't Jesus Christ born in",0
  4145.     dc.b    "Ireland?",0
  4146.     dc.b    "They couldn't find three wise men and",0
  4147.     dc.b    "a virgin.",0,0
  4148.     
  4149. jke187:    dc.b    "An Irishman went to the cinema.  He",0
  4150.     dc.b    "bought his ticket and then went in to",0
  4151.     dc.b    "see the film.  A few minutes later he",0
  4152.     dc.b    "appeared at the box office and bought",0
  4153.     dc.b    "another ticket.  A few minutes later",0
  4154.     dc.b    "he went to the box office again and",0
  4155.     dc.b    "asked for another ticket.  'What's",0
  4156.     dc.b    "the idea?' asked the cashier.  'I've",0
  4157.     dc.b    "already sold you two tickets.'  'I",0
  4158.     dc.b    "know' he said 'but every time I try",0
  4159.     dc.b    "to get in some bloke keeps tearing",0
  4160.     dc.b    "them up.'",0,0
  4161.     
  4162. jke188:    dc.b    "How do you recognise the bride at an",0
  4163.     dc.b    "Irish wedding?",0
  4164.     dc.b    "She's the one in the white wellies.",0
  4165.     dc.b    " ",0
  4166.     dc.b    "Two Irishmen were walking by a nudist",0
  4167.     dc.b    "colony and decided to look in so one",0
  4168.     dc.b    "stood on the other's shoulder to look",0
  4169.     dc.b    "over the wall.  'Are there men and",0
  4170.     dc.b    "women in there?' asked the one at the",0
  4171.     dc.b    "bottom.  'I can't tell' said the one",0
  4172.     dc.b    "on his shoulders, they haven't got",0
  4173.     dc.b    "any clothes on.'",0,0
  4174.     
  4175. jke189:    dc.b    "A small Irish town decided to build a",0
  4176.     dc.b    "bridge and the council was debating",0
  4177.     dc.b    "its construction.  'Which side of the",0
  4178.     dc.b    "river' asked one portly councillor",0
  4179.     dc.b    "'has the most traffic?'  'The south",0
  4180.     dc.b    "side' answered the clerk.",0
  4181.     dc.b    "'Splendid' said the councillor",0
  4182.     dc.b    "'then that must be the side we build",0
  4183.     dc.b    "the bridge on.'",0
  4184.     dc.b    " ",0
  4185.     dc.b    "How do you get an Irishman to burn",0
  4186.     dc.b    "his face.",0
  4187.     dc.b    "Telephone him while he's ironing.",0,0
  4188.     
  4189. jke190:    dc.b    "Did you hear about the Irish",0
  4190.     dc.b    "housewife who had an accident while",0
  4191.     dc.b    "ironing the curtains?",0
  4192.     dc.b    "She fell out of the window.",0
  4193.     dc.b    " ",0
  4194.     dc.b    "An Irishman wanted to marry a Welsh",0
  4195.     dc.b    "girl but her parents forbade it so",0
  4196.     dc.b    "the unhappy couple decided to jump",0
  4197.     dc.b    "off Beachy Head.  Only the girl hit",0
  4198.     dc.b    "the water though - the Irishman got",0
  4199.     dc.b    "lost on the way down.",0,0
  4200.     
  4201. jke191:    dc.b    "An Irishman consistently arrived late",0
  4202.     dc.b    "for work until his long-suffering",0
  4203.     dc.b    "boss asked him what was wrong.  'My",0
  4204.     dc.b    "problem' explained the Irishman 'is",0
  4205.     dc.b    "that I sleep very slowly.'",0
  4206.     dc.b    "'What did the doctor say?' asked the",0
  4207.     dc.b    "anxious friend of an Irishman.  'He",0
  4208.     dc.b    "said I must give up drink and",0
  4209.     dc.b    "restricted me to one glass a day.'",0
  4210.     dc.b    "'Did he now?'  'He did' said the",0
  4211.     dc.b    "Irishman 'Right now I'm halfway",0
  4212.     dc.b    "through 1994.'",0,0
  4213.     
  4214. jke192:    dc.b    "Two Irishmen staggered into a bar.",0
  4215.     dc.b    "One of them ordered two double",0
  4216.     dc.b    "whiskeys and watched while his friend",0
  4217.     dc.b    "drank his in one swallow swirled",0
  4218.     dc.b    "around and then keeled over.  'That's",0
  4219.     dc.b    "what I like about John' he said to",0
  4220.     dc.b    "the barman 'he knows when he's had",0
  4221.     dc.b    "enough.'",0
  4222.     dc.b    " ",0
  4223.     dc.b    "The priest asked O'Reilly why he",0
  4224.     dc.b    "drank.  'Booze killed me mother'",0
  4225.     dc.b    "said O'Reilly 'and booze killed me",0
  4226.     dc.b    "father.  I'm drinking for revenge.'",0,0
  4227.     
  4228. jke193:    dc.b    "A small town in Ireland had a poster",0
  4229.     dc.b    "printed:",0
  4230.     dc.b    "Help support your Local Police:",0
  4231.     dc.b    "Bribe Them.",0
  4232.     dc.b    " ",0
  4233.     dc.b    "An Irishman visited the zoo and was",0
  4234.     dc.b    "much taken by the kangaroos.  A",0
  4235.     dc.b    "friend pointed at the notice that",0
  4236.     dc.b    "read 'A native of Australia' and said",0
  4237.     dc.b    "proudly 'My sister married one.'",0,0
  4238.  
  4239. jke194:    dc.b    "Did you hear about the Irishman who",0
  4240.     dc.b    "killed himself by jumping off a tower",0
  4241.     dc.b    "block after his foreman told him that",0
  4242.     dc.b    "he used to fly in Wellingtons during",0
  4243.     dc.b    "the war?",0
  4244.     dc.b    " ",0
  4245.     dc.b    "Or about the Irishman who thought",0
  4246.     dc.b    "that Royal Enfield was where the",0
  4247.     dc.b    "Queen kept her chickens?",0
  4248.     dc.b    " ",0
  4249.     dc.b    "And then there was the Irish tap",0
  4250.     dc.b    "dancer who fell in the sink.",0,0
  4251.     
  4252. jke195:    dc.b    "There was an Irish Literary critic",0
  4253.     dc.b    "who entered the debate about who",0
  4254.     dc.b    "wrote Shakespeare's plays declaring",0
  4255.     dc.b    "'They were not written by Shakespeare",0
  4256.     dc.b    "but by another gentleman of the same",0
  4257.     dc.b    "name.'",0
  4258.     dc.b    " ",0
  4259.     dc.b    "Then there was the Irishman who set",0
  4260.     dc.b    "his jacket alight because he wanted a",0
  4261.     dc.b    "blazer.",0,0
  4262.     
  4263. jke196a:dc.b    "A young Irish lad sat in the",0
  4264.     dc.b    "confessional and began his",0
  4265.     dc.b    "confession 'Forgive me Father for",0
  4266.     dc.b    "I have sinned.  I have committed the",0
  4267.     dc.b    "sin of fornication with one of the",0
  4268.     dc.b    "women of the parish.'  'And who",0
  4269.     dc.b    "pray tell was it?' asked the priest.",0
  4270.     dc.b    "'I'm afraid I can't betray her'",0
  4271.     dc.b    "answered the lad.  >>>",0,0
  4272.  
  4273. jke196b:dc.b    "'Was it Margaret O'Reilly?'",0
  4274.     dc.b    "asked the priest.  'It was",0
  4275.     dc.b    "not.'  'Well was it Kathleen McBride?'",0
  4276.     dc.b    "'I'm afraid Father I cannot answer'",0
  4277.     dc.b    "said the lad and fled from the church.",0
  4278.     dc.b    "Outside he ran into one of his",0
  4279.     dc.b    "friends.  'Did the Father absolve you?'",0
  4280.     dc.b    "asked his friend.  'No  he did not'",0
  4281.     dc.b    "replied the lad 'but he gave me two",0
  4282.     dc.b    "good leads.'",0,0
  4283.     
  4284. jke197     dc.b    "The priest was selling tickets for a",0
  4285.     dc.b    "church social and accosted a",0
  4286.     dc.b    "recalcitrant member of the public.",0
  4287.     dc.b    "'I'm afraid Father that I'll not be",0
  4288.     dc.b    "able to attend but my spirit will be",0
  4289.     dc.b    "with you' said the man intending to",0
  4290.     dc.b    "walk on.  'That's fine' said the",0
  4291.     dc.b    "priest' does your spirit want a £1",0
  4292.     dc.b    "or a £2 ticket?'",0
  4293.     dc.b    " ",0
  4294.     dc.b    "Did you hear about the Irishman who",0
  4295.     dc.b    "took his car for a service but",0
  4296.     dc.b    "couldn't get it in the church door?",0,0
  4297.     
  4298. jke198a:dc.b    "A young Irish priest just out of",0
  4299.     dc.b    "seminary went to a very lazy parish",0
  4300.     dc.b    "on the west coast.  After an",0
  4301.     dc.b    "uneventful month he went into the",0
  4302.     dc.b    "church one day and was stopped in his",0
  4303.     dc.b    "tracks for kneeling at the altar",0
  4304.     dc.b    "there was Jesus Christ.   >>>",0,0
  4305.     
  4306. jke198b:dc.b    "The young priest raced off to his",0
  4307.     dc.b    "superior who came back with him.",0
  4308.     dc.b    "When they arrived back at the church",0
  4309.     dc.b    "there sure enough was Jesus. 'What",0
  4310.     dc.b    "shall we do?' whispered the young",0
  4311.     dc.b    "priest.  His superior looked",0
  4312.     dc.b    "thoughtful for a moment and then",0
  4313.     dc.b    "said 'Look busy.'",0,0
  4314.     
  4315. jke199:    dc.b    "Two comely nuns were walking past a",0
  4316.     dc.b    "roadworks when great brawny hands",0
  4317.     dc.b    "seized them by their ankles and",0
  4318.     dc.b    "hauled them into the trench and then",0
  4319.     dc.b    "the two of them were raped.  As they",0
  4320.     dc.b    "climbed out of the hole and smoothed",0
  4321.     dc.b    "down their habits one of them turned",0
  4322.     dc.b    "to the other and said tearfully",0
  4323.     dc.b    "'What are we going to tell Mother",0
  4324.     dc.b    "Superior?  Raped twice in the same",0
  4325.     dc.b    "day.'  'What do you mean twice?'",0
  4326.     dc.b    "asked her companion.  'We are going",0
  4327.     dc.b    "back the same way aren't we!'",0,0
  4328.     
  4329. jke200:    dc.b    "An Irish priest was sent as a",0
  4330.     dc.b    "missionary to a tribe of cannibals.",0
  4331.     dc.b    "He made great progress; in no time at",0
  4332.     dc.b    "all he had convinced them that on",0
  4333.     dc.b    "Fridays they should eat only",0
  4334.     dc.b    "fishermen.",0
  4335.     dc.b    " ",0
  4336.     dc.b    "Did you hear about the Irishman who",0
  4337.     dc.b    "was walking down the road punching",0
  4338.     dc.b    "women kicking dogs and cursing",0
  4339.     dc.b    "children?",0
  4340.     dc.b    "He was on the way to confession and",0
  4341.     dc.b    "didn't have much material.",0,0
  4342.     
  4343. jke201a:dc.b    "One Sunday an Irish priest was",0
  4344.     dc.b    "delivering his usual doleful sermon.",0
  4345.     dc.b    "'One day' he intoned morosely",0
  4346.     dc.b    "'every man in this parish will die.'",0
  4347.     dc.b    "He was somewhat amazed to see a man",0
  4348.     dc.b    "in the back row chuckling.  He looked",0
  4349.     dc.b    "at the man sadly and said 'Why is it",0
  4350.     dc.b    "that you're laughing when I say that",0
  4351.     dc.b    "one day everyone in this parish will",0
  4352.     dc.b    "die?'  The man continued chuckling",0
  4353.     dc.b    "and said 'I'm not from this parish!'",0,0
  4354.     
  4355. jke201b:dc.b    "Another priest was breathing fire and",0
  4356.     dc.b    "brimstone.  'Stand up I say, stand",0
  4357.     dc.b    "up all of ye who prefer sin' he",0
  4358.     dc.b    "positively boomed and startled a man",0
  4359.     dc.b    "who had been sleeping in the back row",0
  4360.     dc.b    "and who leapt to his feet.  'So you'",0
  4361.     dc.b    "roared the irate priest 'actually",0
  4362.     dc.b    "prefer sin?'",0
  4363.     dc.b    "'Oh, I'm sorry Father' answered the man",0
  4364.     dc.b    "'I thought you said gin.'",0,0
  4365.     
  4366. jke202a:dc.b    "A drunk staggered out of a bar in",0
  4367.     dc.b    "Dublin straight into the arms of a",0
  4368.     dc.b    "priest.  'Drunk is it?' said the",0
  4369.     dc.b    "priest. 'When are you going to learn",0
  4370.     dc.b    "what evils the drink is responsible",0
  4371.     dc.b    "for?'  'Father' asked the drunk",0
  4372.     dc.b    "'what is it that causes the  >>>",0,0
  4373.     
  4374. jke202b:dc.b    "arthritis?'  'I'll tell you what it",0
  4375.     dc.b    "is' thundered the priest warming to",0
  4376.     dc.b    "his task 'it's drinking water of",0
  4377.     dc.b    "Guinness betting on the horses and",0
  4378.     dc.b    "consorting with loose women.  How",0
  4379.     dc.b    "long have you had the arthritis?'",0
  4380.     dc.b    "'Oh I haven't got the arthritis'",0
  4381.     dc.b    "said the man, 'but the bishop has!'",0,0
  4382.     
  4383. jke203:    dc.b    "Yet another priest was haranguing his",0
  4384.     dc.b    "parishioners: The drink has killed",0
  4385.     dc.b    "millions it rots their stomachs and",0
  4386.     dc.b    "they die in agony.  The smoking has",0
  4387.     dc.b    "killed millions it coats their lungs",0
  4388.     dc.b    "and they too die in agony.",0
  4389.     dc.b    "Overeating and consorting with loose",0
  4390.     dc.b    "women have also killed millions...'",0
  4391.     dc.b    "'I'm sorry to bother you Father'",0
  4392.     dc.b    "piped a thin voice from the back",0
  4393.     dc.b    "'but what is it that kills people who",0
  4394.     dc.b    "live right?",0,0
  4395.     
  4396. jke204:    dc.b    "Two nuns were walking along a dark",0
  4397.     dc.b    "alley when they were grabbed and",0
  4398.     dc.b    "raped.  'Oh Father forgive them'",0
  4399.     dc.b    "cried one 'for they know not what",0
  4400.     dc.b    "they do.'  'Shut up' said the other",0
  4401.     dc.b    "'this one certainly does.'",0,0
  4402.     
  4403. jke205a:dc.b    "Kathleen a young Irish lass fell in",0
  4404.     dc.b    "love with Simon a good Jewish boy.",0
  4405.     dc.b    "Her father told Simon that if they",0
  4406.     dc.b    "wanted to marry then the lad would",0
  4407.     dc.b    "have to become a Catholic.  For a",0
  4408.     dc.b    "year he studied very hard and learnt",0
  4409.     dc.b    "all he could about Catholicism and",0
  4410.     dc.b    "every Sunday he went to church. >>>",0,0
  4411.     
  4412. jke205b:dc.b    "Then one day she went tearfully to",0
  4413.     dc.b    "her father and told him that Simon",0
  4414.     dc.b    "wasn't going to marry her.  'Why",0
  4415.     dc.b    "not?' asked her father 'He was",0
  4416.     dc.b    "getting on very well with our",0
  4417.     dc.b    "religion.'  'That's the problem' she",0
  4418.     dc.b    "sobbed 'Simon has decided to become",0
  4419.     dc.b    "a priest!'",0,0
  4420.  
  4421.     even
  4422.     
  4423. pages:
  4424.  
  4425.     dc.l    page1
  4426.     dc.l    page2
  4427.     dc.l    page3
  4428.     dc.l    page4
  4429.     dc.l    page5
  4430.     dc.l    page6
  4431.     dc.l    jke01
  4432.     dc.l    jke02
  4433.     dc.l    jke03
  4434.     dc.l    jke04
  4435.     dc.l    jke05
  4436.     dc.l    jke06
  4437.     dc.l    jke07
  4438.     dc.l    jke08
  4439.     dc.l    jke09
  4440.     dc.l    jke10
  4441.     dc.l    jke11
  4442.     dc.l    jke12
  4443.     dc.l    jke13
  4444.     dc.l    jke14
  4445.     dc.l    jke15
  4446.     dc.l    jke16
  4447.     dc.l    jke17
  4448.     dc.l    jke18
  4449.     dc.l    jke19
  4450.     dc.l    jke20
  4451.     dc.l    jke21
  4452.     dc.l    jke22
  4453.     dc.l    jke23
  4454.     dc.l    jke24
  4455.     dc.l    jke25
  4456.     dc.l    jke26
  4457.     dc.l    jke27
  4458.     dc.l    jke28a
  4459.     dc.l    jke28b
  4460.     dc.l    jke29
  4461.     dc.l    jke30
  4462.     dc.l    jke31
  4463.     dc.l    jke32
  4464.     dc.l    jke33
  4465.     dc.l    jke34
  4466.     dc.l    jke35
  4467.     dc.l    jke36
  4468.     dc.l    jke37
  4469.     dc.l    jke38
  4470.     dc.l    jke39
  4471.     dc.l    jke40
  4472.     dc.l    jke41
  4473.     dc.l    jke42
  4474.     dc.l    jke43
  4475.     dc.l    jke44
  4476.     dc.l    jke45
  4477.     dc.l    jke46
  4478.     dc.l    jke47
  4479.     dc.l    jke48
  4480.     dc.l    jke49
  4481.     dc.l    jke50
  4482.     dc.l    jke51
  4483.     dc.l    jke52
  4484.     dc.l    jke53
  4485.     dc.l    jke54
  4486.     dc.l    jke55
  4487.     dc.l    jke56
  4488.     dc.l    jke57
  4489.     dc.l    jke58
  4490.     dc.l    jke59
  4491.     dc.l    jke60
  4492.     dc.l    jke61
  4493.     dc.l    jke62
  4494.     dc.l    jke63a
  4495.     dc.l    jke63b
  4496.     dc.l    jke64
  4497.     dc.l    jke65
  4498.     dc.l    jke66
  4499.     dc.l    jke67
  4500.     dc.l    jke68
  4501.     dc.l    jke69
  4502.     dc.l    jke70
  4503.     dc.l    jke71
  4504.     dc.l    jke72
  4505.     dc.l    jke73
  4506.     dc.l    jke74
  4507.     dc.l    jke75
  4508.     dc.l    jke76
  4509.     dc.l    jke77
  4510.     dc.l    jke78
  4511.     dc.l    jke79
  4512.     dc.l    jke80
  4513.     dc.l    jke81
  4514.     dc.l    jke82
  4515.     dc.l    jke83
  4516.     dc.l    jke84
  4517.     dc.l    jke85
  4518.     dc.l    jke86
  4519.     dc.l    jke87
  4520.     dc.l    jke88
  4521.     dc.l    jke89
  4522.     dc.l    jke90
  4523.     dc.l    jke91
  4524.     dc.l    jke92
  4525.     dc.l    jke93
  4526.     dc.l    jke94
  4527.     dc.l    jke95
  4528.     dc.l    jke96
  4529.     dc.l    jke97
  4530.     dc.l    jke98
  4531.     dc.l    jke99
  4532.     dc.l    jke100
  4533.     dc.l    jke101
  4534.     dc.l    jke102
  4535.     dc.l    jke103
  4536.     dc.l    jke104
  4537.     dc.l    jke105
  4538.     dc.l    jke106
  4539.     dc.l    jke107
  4540.     dc.l    jke108
  4541.     dc.l    jke109a
  4542.     dc.l    jke109b
  4543.     dc.l    jke110a
  4544.     dc.l    jke110b
  4545.     dc.l    jke111
  4546.     dc.l    jke112
  4547.     dc.l    jke113
  4548.     dc.l    jke114
  4549.     dc.l    jke115
  4550.     dc.l    jke116
  4551.     dc.l    jke117
  4552.     dc.l    jke118
  4553.     dc.l    jke119
  4554.     dc.l    jke120
  4555.     dc.l    jke121
  4556.     dc.l    jke122
  4557.     dc.l    jke123
  4558.     dc.l    jke124
  4559.     dc.l    jke125
  4560.     dc.l    jke126
  4561.     dc.l    jke127
  4562.     dc.l    jke128
  4563.     dc.l    jke129
  4564.     dc.l    jke130
  4565.     dc.l    jke131
  4566.     dc.l    jke132
  4567.     dc.l    jke133
  4568.     dc.l    jke134
  4569.     dc.l    jke135
  4570.     dc.l    jke136
  4571.     dc.l    jke137
  4572.     dc.l    jke138
  4573.     dc.l    jke139
  4574.     dc.l    jke140a
  4575.     dc.l    jke140b
  4576.     dc.l    jke141
  4577.     dc.l    jke142
  4578.     dc.l    jke143
  4579.     dc.l    jke144
  4580.     dc.l    jke145
  4581.     dc.l    jke146
  4582.     dc.l    jke147
  4583.     dc.l    jke148
  4584.     dc.l    jke149
  4585.     dc.l    jke151
  4586.     dc.l    jke152
  4587.     dc.l    jke153
  4588.     dc.l    jke154
  4589.     dc.l    jke155
  4590.     dc.l    jke156
  4591.     dc.l    jke157
  4592.     dc.l    jke158
  4593.     dc.l    jke159
  4594.     dc.l    jke160
  4595.     dc.l    jke161
  4596.     dc.l    jke162
  4597.     dc.l    jke163
  4598.     dc.l    jke164
  4599.     dc.l    jke165
  4600.     dc.l    jke166
  4601.     dc.l    jke167
  4602.     dc.l    jke168
  4603.     dc.l    jke169
  4604.     dc.l    jke170
  4605.     dc.l    jke171
  4606.     dc.l    jke172
  4607.     dc.l    jke173
  4608.     dc.l    jke174
  4609.     dc.l    jke175
  4610.     dc.l    jke176
  4611.     dc.l    jke177
  4612.     dc.l    jke178
  4613.     dc.l    jke179
  4614.     dc.l    jke180
  4615.     dc.l    jke181
  4616.     dc.l    jke182
  4617.     dc.l    jke183
  4618.     dc.l    jke184
  4619.     dc.l    jke185
  4620.     dc.l    jke186
  4621.     dc.l    jke187
  4622.     dc.l    jke188
  4623.     dc.l    jke189
  4624.     dc.l    jke190
  4625.     dc.l    jke191
  4626.     dc.l    jke192
  4627.     dc.l    jke193
  4628.     dc.l    jke194
  4629.     dc.l    jke195
  4630.     dc.l    jke196a
  4631.     dc.l    jke196b
  4632.     dc.l    jke197
  4633.     dc.l    jke198a
  4634.     dc.l    jke198b
  4635.     dc.l    jke199
  4636.     dc.l    jke200
  4637.     dc.l    jke201a
  4638.     dc.l    jke201b
  4639.     dc.l    jke202a
  4640.     dc.l    jke202b
  4641.     dc.l    jke203
  4642.     dc.l    jke204
  4643.     dc.l    jke205a
  4644.     dc.l    jke205b
  4645.     dc.l    para
  4646.     dc.l    0
  4647.  
  4648.  
  4649.     End
  4650.